nix-config/modules/common/default.nix
2024-12-15 17:45:29 +01:00

21 lines
426 B
Nix

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