nix-config/hosts/common/default.nix
2024-07-31 19:58:47 +02:00

18 lines
363 B
Nix

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