Move some programs to system/default.nix that really should be default installs
This commit is contained in:
parent
97f9fbad92
commit
fa71df0482
|
@ -1,6 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [ fd ripgrep dig nitch neofetch ];
|
||||
stylix.targets = {
|
||||
avizo.enable = true;
|
||||
fzf.enable = true;
|
||||
|
|
|
@ -131,9 +131,6 @@
|
|||
};
|
||||
home.packages = with pkgs; [
|
||||
# Emacs requirements
|
||||
coreutils
|
||||
zip
|
||||
unzip
|
||||
fd
|
||||
ripgrep
|
||||
imagemagick
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue