mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-15 20:00:20 +01:00
34 lines
636 B
Nix
34 lines
636 B
Nix
{ self, makeMachine, ... }:
|
|
{
|
|
flake.nixosConfigurations.gandalf = makeMachine {
|
|
system = "x86_64-linux";
|
|
user = "traxys";
|
|
nixosModules = with self.nixosModules; [
|
|
./extra_info.nix
|
|
./nixos.nix
|
|
./hardware-configuration.nix
|
|
minimal
|
|
personal-cli
|
|
gui
|
|
wm
|
|
personal-gui
|
|
];
|
|
hmModules = with self.hmModules; [
|
|
./extra_info.nix
|
|
./hm.nix
|
|
minimal
|
|
personal-cli
|
|
gui
|
|
wm
|
|
personal-gui
|
|
];
|
|
unfreePackages = [
|
|
"steam"
|
|
"steam-original"
|
|
"steam-unwrapped"
|
|
"cnijfilter2"
|
|
"spotify"
|
|
"discord"
|
|
];
|
|
};
|
|
}
|