Nixfiles/hostconfig/ZeNixComputa/default.nix

40 lines
757 B
Nix
Raw Normal View History

2024-05-14 00:31:34 +02:00
{ self, makeMachine, ... }:
{
flake.nixosConfigurations.ZeNixComputa = makeMachine {
system = "x86_64-linux";
user = "traxys";
nixosModules = with self.nixosModules; [
./extra_info.nix
./hardware-configuration.nix
./nixos.nix
minimal
personal-cli
gui
2024-05-14 00:31:34 +02:00
personal-gui
gaming
2024-08-08 21:57:06 +02:00
de
2024-05-14 00:31:34 +02:00
];
hmModules = with self.hmModules; [
./extra_info.nix
./hm.nix
minimal
personal-cli
gui
2024-05-14 00:31:34 +02:00
personal-gui
gaming
2025-02-19 20:45:09 +01:00
de
2024-05-14 00:31:34 +02:00
];
2024-05-15 21:42:25 +02:00
unfreePackages = [
"cnijfilter2"
"steam"
"steam-original"
"steam-unwrapped"
2024-05-15 21:42:25 +02:00
"steam-run"
"discord"
"spotify"
2025-01-15 22:33:07 +01:00
"wowup-cf"
"libXNVCtrl" # mangohud through bottles & heroic
2024-05-15 21:42:25 +02:00
];
2024-05-14 00:31:34 +02:00
};
}