nix-config/hosts/common/default.nix
2024-07-28 16:10:57 +02:00

15 lines
310 B
Nix

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