Add more Features to sif
This commit is contained in:
parent
0782b0cdba
commit
2b4aa8fd66
1 changed files with 17 additions and 0 deletions
|
@ -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";
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue