Add more Features to `sif`

This commit is contained in:
Riley Apeldoorn 2022-05-23 20:44:35 +02:00
parent 0782b0cdba
commit 2b4aa8fd66
1 changed files with 17 additions and 0 deletions

View File

@ -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";
};
}