From 2b4aa8fd66c46d713b1f487cd587e21f70567b03 Mon Sep 17 00:00:00 2001 From: Riley Apeldoorn Date: Mon, 23 May 2022 20:44:35 +0200 Subject: [PATCH] Add more Features to `sif` --- machines/sif/configuration.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) 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"; }; + }