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
|
2024-07-24 17:35:10 +02:00
|
|
|
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
|
2024-07-24 17:35:10 +02:00
|
|
|
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"
|
2024-10-30 11:37:36 +01:00
|
|
|
"steam-unwrapped"
|
2024-05-15 21:42:25 +02:00
|
|
|
"steam-run"
|
|
|
|
|
"discord"
|
|
|
|
|
"spotify"
|
2025-01-15 22:33:07 +01:00
|
|
|
"wowup-cf"
|
2024-06-27 23:08:54 +02:00
|
|
|
"libXNVCtrl" # mangohud through bottles & heroic
|
2024-05-15 21:42:25 +02:00
|
|
|
];
|
2024-05-14 00:31:34 +02:00
|
|
|
};
|
|
|
|
|
}
|