nix/hosts/desktop/default.nix
2024-07-20 20:47:33 +02:00

25 lines
410 B
Nix

{ inputs, ... }:
{
networking.hostName = "desktop";
networking.networkmanager.enable = true;
boot.loader = {
efi = {
canTouchEfiVariables = false;
};
grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
};
boot.loader.timeout = 5;
imports = [
../../modules
./hardware.nix
inputs.home-manager.nixosModules.default
];
}