nix/hosts/laptop/default.nix

22 lines
386 B
Nix
Raw Normal View History

2024-07-08 14:52:27 +02:00
{ inputs, ... }:
2024-06-05 20:52:52 +02:00
{
networking.hostName = "laptop";
networking.networkmanager.enable = true;
2024-07-03 16:00:19 +02:00
2024-08-05 19:42:24 +02:00
boot.loader = {
timeout = 0;
efi.canTouchEfiVariables = false;
grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
};
2024-06-05 20:52:52 +02:00
imports = [
2024-07-03 16:00:19 +02:00
../../modules
2024-06-05 20:52:52 +02:00
./hardware.nix
inputs.home-manager.nixosModules.default
];
}