From bcf173785829b2eeb69197dea6a42daf20616775 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sat, 8 Mar 2025 13:38:40 +0000 Subject: [PATCH] disable fun stuff in base config --- .../home-manager/modules/nmasur/profiles/common.nix | 6 +----- .../modules/nmasur/profiles/linux-base.nix | 10 ---------- .../modules/nmasur/profiles/linux-gui.nix | 11 +++++++++++ 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/platforms/home-manager/modules/nmasur/profiles/common.nix b/platforms/home-manager/modules/nmasur/profiles/common.nix index 5dc4938..0bd15f5 100644 --- a/platforms/home-manager/modules/nmasur/profiles/common.nix +++ b/platforms/home-manager/modules/nmasur/profiles/common.nix @@ -28,15 +28,11 @@ in nmasur.presets = { programs = { - atuin.enable = true; - fzf.enable = true; - neovim.enable = true; - git.enable = true; bat.enable = lib.mkDefault true; fd.enable = lib.mkDefault true; - fish.enable = lib.mkDefault true; ripgrep.enable = lib.mkDefault true; starship.enable = lib.mkDefault true; + nixpkgs.enable = lib.mkDefault true; }; services = { loadkey.enable = lib.mkDefault true; diff --git a/platforms/home-manager/modules/nmasur/profiles/linux-base.nix b/platforms/home-manager/modules/nmasur/profiles/linux-base.nix index b55c167..619f406 100644 --- a/platforms/home-manager/modules/nmasur/profiles/linux-base.nix +++ b/platforms/home-manager/modules/nmasur/profiles/linux-base.nix @@ -1,6 +1,5 @@ { config, - pkgs, lib, ... }: @@ -35,14 +34,5 @@ in }; }; - programs.fish = { - shellAliases = { - # Move files to XDG trash on the commandline - trash = lib.mkDefault "${pkgs.trash-cli}/bin/trash-put"; - }; - shellAbbrs = { - t = lib.mkDefault "trash"; - }; - }; }; } diff --git a/platforms/home-manager/modules/nmasur/profiles/linux-gui.nix b/platforms/home-manager/modules/nmasur/profiles/linux-gui.nix index d2fc6a3..618417d 100644 --- a/platforms/home-manager/modules/nmasur/profiles/linux-gui.nix +++ b/platforms/home-manager/modules/nmasur/profiles/linux-gui.nix @@ -1,5 +1,6 @@ { config, + pkgs, lib, ... }: @@ -43,5 +44,15 @@ in }; }; + programs.fish = { + shellAliases = { + # Move files to XDG trash on the commandline + trash = lib.mkDefault "${pkgs.trash-cli}/bin/trash-put"; + }; + shellAbbrs = { + t = lib.mkDefault "trash"; + }; + }; + }; }