mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 19:30:19 +01:00
37 lines
731 B
Nix
37 lines
731 B
Nix
{ 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
|
|
personal-gui
|
|
gaming
|
|
de
|
|
];
|
|
hmModules = with self.hmModules; [
|
|
./extra_info.nix
|
|
./hm.nix
|
|
minimal
|
|
personal-cli
|
|
gui
|
|
personal-gui
|
|
gaming
|
|
];
|
|
unfreePackages = [
|
|
"cnijfilter2"
|
|
"steam"
|
|
"steam-original"
|
|
"steam-unwrapped"
|
|
"steam-run"
|
|
"discord"
|
|
"spotify"
|
|
"libXNVCtrl" # mangohud through bottles & heroic
|
|
];
|
|
};
|
|
}
|