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, ... }:
|
{ 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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue