dotfiles/nixos/systems/omen.nix
2021-02-26 10:24:58 +01:00

40 lines
755 B
Nix

inputs: {
system = "x86_64-linux";
hostname = "omen";
check = false;
config = {
allowUnfree = true;
};
hm."main" = import ../hm-profiles/common.nix {
multimc5 = false;
wine = false;
_3dPrinting = false;
};
modules = [
../hardware/omen.nix
(import ../modules/pin-nixpkgs.nix inputs)
../users/main.nix
(import ../profiles/laptop.nix {
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:1:0:0";
})
../modules/nvidia-5.11-patch.nix
] ++ [
(_: _: {
networking = {
hostName = "omen";
useDHCP = false;
interfaces.eno1.useDHCP = true;
};
time.timeZone = "Europe/Bratislava";
system.stateVersion = "20.09";
})
];
compatModules = [];
}