16 lines
341 B
Nix
16 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";
|
|
}
|