nix-config/hosts/common/default.nix
2024-05-21 01:27:32 +02:00

18 lines
463 B
Nix

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