diff --git a/machines/sif/configuration.nix b/machines/sif/configuration.nix index 241dfc3..093837a 100644 --- a/machines/sif/configuration.nix +++ b/machines/sif/configuration.nix @@ -1,5 +1,11 @@ { config, pkgs, lib, ... }: + { + + imports = [ + ../../modules + ]; + networking.hostName = "sif"; boot.loader = { @@ -12,6 +18,16 @@ vim ]; + system.stateVersion = "21.11"; + + riley = { + gui = false; + kak = { + enable = true; + nix = true; + }; + }; + users.users."riley" = { isNormalUser = true; extraGroups = [ "wheel" ]; @@ -23,4 +39,5 @@ device = "/dev/disk/by-label/NIXOS_SD"; fsType = "ext4"; }; + }