nix-config/hosts/common/default.nix
2024-05-31 13:34:18 +02:00

18 lines
430 B
Nix

{ pkgs, configVars, ... }:
{
networking.hostName = configVars.hostname;
imports = [
./nix-ld.nix
./boot.nix
./printers.nix
];
hardware.bluetooth.enable = true;
services.hardware.bolt.enable = true;
networking.networkmanager.enable = true;
console.keyMap = "de";
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "23.11";
}