feat(hosts/server): moving package installation in the server configuration
- was on global
This commit is contained in:
parent
a97b578533
commit
dfe8ed8b29
2 changed files with 41 additions and 37 deletions
|
|
@ -46,9 +46,6 @@
|
||||||
"docker"
|
"docker"
|
||||||
"video"
|
"video"
|
||||||
];
|
];
|
||||||
packages = with pkgs; [
|
|
||||||
home-manager
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -78,43 +75,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
age
|
|
||||||
bat
|
|
||||||
cairo
|
|
||||||
dconf
|
|
||||||
fastfetch
|
|
||||||
git
|
git
|
||||||
home-manager
|
|
||||||
lego
|
|
||||||
libjpeg
|
|
||||||
libpng
|
|
||||||
libuuid
|
|
||||||
linux-manual
|
|
||||||
man
|
|
||||||
man-pages
|
|
||||||
man-pages-posix
|
|
||||||
networkmanager
|
|
||||||
openssl
|
|
||||||
pkg-config
|
|
||||||
postgresql
|
postgresql
|
||||||
protonup-ng
|
|
||||||
python3
|
|
||||||
python3Packages.pip
|
|
||||||
qFlipper
|
|
||||||
ripgrep
|
|
||||||
swaylock
|
|
||||||
swaylock-fancy
|
|
||||||
tmux
|
|
||||||
unzip
|
|
||||||
vim
|
vim
|
||||||
wget
|
wget
|
||||||
wl-clipboard
|
|
||||||
xclip
|
|
||||||
xdg-desktop-portal-hyprland
|
|
||||||
xsel
|
|
||||||
yarn
|
|
||||||
zsh
|
|
||||||
] ++ [
|
|
||||||
inputs.agenix.packages.${pkgs.system}.agenix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -89,6 +89,47 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
age
|
||||||
|
bat
|
||||||
|
cairo
|
||||||
|
dconf
|
||||||
|
fastfetch
|
||||||
|
git
|
||||||
|
home-manager
|
||||||
|
lego
|
||||||
|
libjpeg
|
||||||
|
libpng
|
||||||
|
libuuid
|
||||||
|
linux-manual
|
||||||
|
man
|
||||||
|
man-pages
|
||||||
|
man-pages-posix
|
||||||
|
networkmanager
|
||||||
|
openssl
|
||||||
|
pkg-config
|
||||||
|
postgresql
|
||||||
|
protonup-ng
|
||||||
|
python3
|
||||||
|
python3Packages.pip
|
||||||
|
qFlipper
|
||||||
|
ripgrep
|
||||||
|
swaylock
|
||||||
|
swaylock-fancy
|
||||||
|
tmux
|
||||||
|
unzip
|
||||||
|
vim
|
||||||
|
wget
|
||||||
|
wl-clipboard
|
||||||
|
xclip
|
||||||
|
xdg-desktop-portal-hyprland
|
||||||
|
xsel
|
||||||
|
yarn
|
||||||
|
zsh
|
||||||
|
] ++ [
|
||||||
|
inputs.agenix.packages.${pkgs.system}.agenix
|
||||||
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue