nix/hosts/pc/default.nix
2024-06-25 19:19:24 +02:00

15 lines
346 B
Nix

{ config, lib, pkgs, modulesPath, inputs, ... }:
{
networking.hostName = "pc";
networking.networkmanager.enable = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.timeout = 5;
imports = [
../../modules
./hardware.nix
inputs.home-manager.nixosModules.default
];
}