mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
5db8e73c35
Signed-off-by: Magic_RB <magic_rb@redalder.org>
42 lines
827 B
Nix
42 lines
827 B
Nix
inputs: {
|
|
system = "x86_64-linux";
|
|
hostname = "omen";
|
|
check = false;
|
|
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
|
|
hm."main" = import ../home-manager/profiles/common.nix {
|
|
multimc5 = false;
|
|
wine = false;
|
|
_3dPrinting = false;
|
|
js-ts = false;
|
|
};
|
|
|
|
modules = [
|
|
../nixos/hardware/omen.nix
|
|
../nixos/modules/pin-nixpkgs.nix
|
|
../nixos/users/main.nix
|
|
(import ../nixos/profiles/laptop.nix {
|
|
intelBusId = "PCI:0:2:0";
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
})
|
|
../nixos/modules/nvidia-5.11-patch.nix
|
|
] ++ [
|
|
(_: _: {
|
|
networking = {
|
|
hostName = "omen";
|
|
useDHCP = false;
|
|
interfaces.eno1.useDHCP = true;
|
|
hostId = "10c7ffc5";
|
|
};
|
|
|
|
time.timeZone = "Europe/Bratislava";
|
|
system.stateVersion = "20.09";
|
|
})
|
|
];
|
|
|
|
compatModules = [];
|
|
}
|