nix-config/hosts/common/default.nix

17 lines
320 B
Nix
Raw Normal View History

2024-09-19 17:12:09 +02:00
{ hostname, ... }:
2024-05-11 19:56:45 +02:00
{
2024-07-06 23:09:27 +02:00
imports = [
./autoupdate.nix
2024-07-06 23:21:02 +02:00
./garbage-collect.nix
2024-07-06 23:24:55 +02:00
./optimise.nix
2024-07-06 23:09:27 +02:00
];
2024-07-28 10:16:48 +02:00
2024-07-31 19:55:12 +02:00
networking = {
networkmanager.enable = true;
hostName = "${hostname}";
};
2024-07-28 10:16:48 +02:00
console.keyMap = "de";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
2024-05-11 19:56:45 +02:00
system.stateVersion = "23.11";
2024-07-28 10:16:48 +02:00
}