nix/hosts/pc/default.nix

15 lines
346 B
Nix
Raw Normal View History

2024-06-05 20:52:52 +02:00
{ config, lib, pkgs, modulesPath, inputs, ... }:
{
networking.hostName = "pc";
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
];
}