nix/hosts/desktop/default.nix

26 lines
473 B
Nix
Raw Normal View History

2024-08-08 17:25:49 +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-08-17 17:06:58 +02:00
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi"; # ← use the same mount point here.
};
grub = {
efiSupport = true;
device = "nodev";
};
};
2024-08-08 15:26:04 +02:00
services.hardware.openrgb.enable = true;
2024-08-08 23:07:44 +02:00
2024-06-05 20:52:52 +02:00
imports = [
../../modules
./hardware.nix
inputs.home-manager.nixosModules.default
];
}