nix/hosts/desktop/default.nix

25 lines
410 B
Nix
Raw Normal View History

2024-07-08 14:52:27 +02:00
{ inputs, ... }:
2024-06-05 20:52:52 +02:00
{
2024-07-04 12:57:40 +02:00
networking.hostName = "desktop";
2024-06-05 20:52:52 +02:00
networking.networkmanager.enable = true;
2024-07-20 20:47:33 +02:00
boot.loader = {
efi = {
canTouchEfiVariables = false;
};
grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
};
2024-06-24 20:39:16 +02:00
boot.loader.timeout = 5;
2024-06-05 20:52:52 +02:00
imports = [
../../modules
./hardware.nix
inputs.home-manager.nixosModules.default
];
}