nix-config/hosts/common/default.nix
2024-08-07 22:10:55 +02:00

17 lines
341 B
Nix

{ pkgs, pkgs-unstable, hostname, ... }:
{
imports = [
./autoupdate.nix
./garbage-collect.nix
./optimise.nix
];
networking = {
networkmanager.enable = true;
hostName = "${hostname}";
};
console.keyMap = "de";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "23.11";
}