nix-config/hosts/common/default.nix

17 lines
403 B
Nix
Raw Normal View History

2024-05-11 19:56:45 +02:00
{ pkgs, ... }:
{
networking.hostName = "Lenni";
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
];
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";
}