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, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
../../modules
|
||||||
|
];
|
||||||
|
|
||||||
networking.hostName = "sif";
|
networking.hostName = "sif";
|
||||||
|
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
|
@ -12,6 +18,16 @@
|
||||||
vim
|
vim
|
||||||
];
|
];
|
||||||
|
|
||||||
|
system.stateVersion = "21.11";
|
||||||
|
|
||||||
|
riley = {
|
||||||
|
gui = false;
|
||||||
|
kak = {
|
||||||
|
enable = true;
|
||||||
|
nix = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
users.users."riley" = {
|
users.users."riley" = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" ];
|
extraGroups = [ "wheel" ];
|
||||||
|
@ -23,4 +39,5 @@
|
||||||
device = "/dev/disk/by-label/NIXOS_SD";
|
device = "/dev/disk/by-label/NIXOS_SD";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue