nix-config/hosts/common/default.nix

18 lines
463 B
Nix
Raw Normal View History

2024-05-19 20:11:53 +02:00
{ pkgs, configVars, ... }:
2024-05-11 19:56:45 +02:00
{
2024-05-19 20:11:53 +02:00
networking.hostName = configVars.hostname;
2024-05-11 19:56:45 +02:00
imports = [
2024-05-11 21:26:33 +02:00
./nix-ld.nix
2024-05-11 19:56:45 +02:00
./boot.nix
2024-05-13 21:28:00 +02:00
./printers.nix
2024-05-11 19:56:45 +02:00
];
2024-05-21 01:27:32 +02:00
hardware.bluetooth.enable = true;
2024-05-11 19:56:45 +02:00
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";
}