From 632f2f8115bfe55d0910e683da42a84b60c8eed8 Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Wed, 29 Nov 2023 02:06:27 +0000 Subject: [PATCH] Remove debug info, move bat and eza to home --- home/fish.nix | 3 ++- sets/packages.nix | 4 ---- sets/workstation.nix | 1 - 3 files changed, 2 insertions(+), 6 deletions(-) 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; };