diff --git a/home/fish.nix b/home/fish.nix index 1e2529a..0685c25 100644 --- a/home/fish.nix +++ b/home/fish.nix @@ -1,4 +1,4 @@ -{ ... }: { +{ pkgs, ... }: { programs.fish = { enable = true; interactiveShellInit = "set -g -x GPG_TTY (tty)"; @@ -9,4 +9,5 @@ nix-fish = "nix-shell --command fish"; }; }; + home.packages = with pkgs; [ bat eza ]; } diff --git a/sets/packages.nix b/sets/packages.nix index 2c743b2..9a32778 100644 --- a/sets/packages.nix +++ b/sets/packages.nix @@ -72,10 +72,6 @@ xxd zip - # Coreutils replacements - bat - eza - # Networking curlFull iw diff --git a/sets/workstation.nix b/sets/workstation.nix index 0df12c5..08952f5 100644 --- a/sets/workstation.nix +++ b/sets/workstation.nix @@ -21,7 +21,6 @@ variables.EDITOR = "nvim"; variables.VISUAL = "nvim"; variables.TERMINAL = "kitty"; - enableDebugInfo = true; }; programs.nixvim = import ./nvim.nix args // { enable = true; };