Move some programs to system/default.nix that really should be default installs

This commit is contained in:
Evie Litherland-Smith 2023-12-12 06:31:18 +00:00
parent 97f9fbad92
commit fa71df0482
3 changed files with 9 additions and 4 deletions

View file

@ -1,6 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
home.packages = with pkgs; [ fd ripgrep dig nitch neofetch ];
stylix.targets = { stylix.targets = {
avizo.enable = true; avizo.enable = true;
fzf.enable = true; fzf.enable = true;

View file

@ -131,9 +131,6 @@
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
# Emacs requirements # Emacs requirements
coreutils
zip
unzip
fd fd
ripgrep ripgrep
imagemagick imagemagick

View file

@ -6,7 +6,14 @@ in {
nameservers = [ "9.9.9.9" ]; nameservers = [ "9.9.9.9" ];
}; };
environment = { environment = {
systemPackages = with pkgs; [ libsecret git nitch dig gnumake fd ripgrep ]; systemPackages = with pkgs; [
coreutils
libsecret
gnumake
gitFull
zip
unzip
];
localBinInPath = true; localBinInPath = true;
}; };
console.keyMap = "uk"; console.keyMap = "uk";