nixos_config/hosts/inuc/configuration.nix

16 lines
309 B
Nix
Raw Normal View History

2025-12-09 16:34:37 +01:00
{ config, pkgs, lib, ... }:
{
security.sudo.wheelNeedsPassword = false;
imports =
[ ./hardware-configuration.nix ];
networking.hostName = "inuc";
boot.initrd.enable = true;
boot.loader = {
systemd-boot = {
enable = true;
}; # end loader.systemd-boot
}; # end boot
} # end file