split into multiple files, added dwm

This commit is contained in:
2024-04-19 19:09:26 +02:00
parent f6eb31a26b
commit 96d2193856
11 changed files with 322 additions and 429 deletions

20
hosts/common/packages.nix Normal file
View File

@@ -0,0 +1,20 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
environment.systemPackages = (with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
ntfs3g
dosfstools
unstable.nh
nix-output-monitor
nvd
]);
fonts.packages = with pkgs; [ nerdfonts ];
}