This commit is contained in:
Sasza Stanczew 2026-02-27 16:31:15 +01:00
parent 6944ac33e3
commit 6c59fb3e17
2 changed files with 9 additions and 0 deletions

View file

@ -34,6 +34,7 @@
#./modules/network.nix #./modules/network.nix
#./modules/office.nix #./modules/office.nix
./modules/tibia.nix ./modules/tibia.nix
./modules/multimedia.nix
]; ];
nix-gaming = mk_system "x86_64-linux" "nix-gaming" [ nix-gaming = mk_system "x86_64-linux" "nix-gaming" [
@ -44,6 +45,7 @@
# ./modules/office.nix # ./modules/office.nix
./modules/3dmodel.nix ./modules/3dmodel.nix
./modules/3dprint.nix ./modules/3dprint.nix
./modules/multimedia.nix
]; ];
}; };
}; };

7
modules/multimedia.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
# paczki
environment.systemPackages = with pkgs; [
vlc
];
}