From fa71df04827555bb1b1d5403ce2d76e9bbd522bc Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 12 Dec 2023 06:31:18 +0000 Subject: [PATCH] Move some programs to system/default.nix that really should be default installs --- home/default.nix | 1 + home/emacs.nix | 3 --- system/default.nix | 9 ++++++++- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/home/default.nix b/home/default.nix index 28ead71e..74439099 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,6 +1,7 @@ { config, lib, pkgs, ... }: { + home.packages = with pkgs; [ fd ripgrep dig nitch neofetch ]; stylix.targets = { avizo.enable = true; fzf.enable = true; diff --git a/home/emacs.nix b/home/emacs.nix index 92836470..57bfb1d4 100644 --- a/home/emacs.nix +++ b/home/emacs.nix @@ -131,9 +131,6 @@ }; home.packages = with pkgs; [ # Emacs requirements - coreutils - zip - unzip fd ripgrep imagemagick diff --git a/system/default.nix b/system/default.nix index 2c7998aa..c167c37a 100644 --- a/system/default.nix +++ b/system/default.nix @@ -6,7 +6,14 @@ in { nameservers = [ "9.9.9.9" ]; }; environment = { - systemPackages = with pkgs; [ libsecret git nitch dig gnumake fd ripgrep ]; + systemPackages = with pkgs; [ + coreutils + libsecret + gnumake + gitFull + zip + unzip + ]; localBinInPath = true; }; console.keyMap = "uk";