diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-07-08 14:55:31 +0000 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-07-08 14:55:31 +0000 |
| commit | fabc1603e42673afddde37ef121e0b8935559086 (patch) | |
| tree | e09834122fb348d6253d9ab48549bf559c043dfd /modules/terminal/system/default.nix | |
| parent | c31425298f3de9fff78d38a36ccc2d8e14c580ee (diff) | |
move stuff to their own files; system update
Diffstat (limited to 'modules/terminal/system/default.nix')
| -rw-r--r-- | modules/terminal/system/default.nix | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/modules/terminal/system/default.nix b/modules/terminal/system/default.nix index 9268a1a..d113944 100644 --- a/modules/terminal/system/default.nix +++ b/modules/terminal/system/default.nix @@ -1,19 +1,19 @@ -{ - config, - pkgs, - ... -}: let +{config, ...}: let cfg = config.collinux.terminal.shells; in { imports = [ - ./programs/cmus.nix - ./programs/fish.nix - ./programs/git.nix - ./programs/helix.nix + ./programs/fzf.nix + ./programs/bat.nix + ./programs/nh.nix ./programs/lazygit.nix + ./programs/eza.nix ./programs/starship.nix + ./programs/git.nix ./programs/tmux.nix ./programs/broot.nix + ./programs/cmus.nix + ./programs/helix.nix + ./programs/fish.nix ]; programs.command-not-found.enable = false; # broken without nix-channels @@ -21,6 +21,5 @@ in { users.users."${config.collinux.user.name}" = { shell = cfg.defaultShell; ignoreShellProgramCheck = true; - packages = [pkgs.nh]; # Couldn't figure out where else to put this }; } |
