nixfiles/hosts/kalessin/default.nix

18 lines
336 B
Nix

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