nixfiles/hosts/kalessin/default.nix

19 lines
363 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
networking.hostName = "kalessin";
networking.hostId = "534b538e";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
users.users.qenya.extraGroups = [ "wheel" ];
qenya.base-server.enable = true;
system.stateVersion = "23.11";
}