mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
34 lines
622 B
Nix
34 lines
622 B
Nix
|
inputs: {
|
||
|
system = "x86_64-linux";
|
||
|
hostname = "heater";
|
||
|
check = false;
|
||
|
|
||
|
config = {
|
||
|
allowUnfree = true;
|
||
|
};
|
||
|
|
||
|
hm."main" = import ../hm-profiles/common.nix;
|
||
|
|
||
|
modules = [
|
||
|
../hardware/heater.nix
|
||
|
../profiles/workstation.nix
|
||
|
(import ../modules/pin-nixpkgs.nix inputs)
|
||
|
../users/main.nix
|
||
|
] ++ [
|
||
|
(_: _: {
|
||
|
networking = {
|
||
|
hostName = "heater";
|
||
|
useDHCP = false;
|
||
|
interfaces.enp3s0.useDHCP = true;
|
||
|
};
|
||
|
|
||
|
time.timeZone = "Europe/Bratislava";
|
||
|
system.stateVersion = "20.09";
|
||
|
|
||
|
virtualisation.docker.enable = true;
|
||
|
})
|
||
|
];
|
||
|
|
||
|
compatModules = [];
|
||
|
}
|