nix/hosts/desktop/default.nix

15 lines
319 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;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
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
];
}