feat: update configuration with work nixos configuration

This commit is contained in:
installer
2025-02-06 12:21:45 +01:00
parent 2cdfbdbef0
commit c9401921df
9 changed files with 343 additions and 16 deletions

View File

@@ -71,7 +71,21 @@
pulseaudio.enable = false;
graphics.enable = true;
};
security.rtkit.enable = true;
environment.sessionVariables = {
FLAKE = "/home/yoru/nixos";
};
security = {
rtkit.enable = true;
sudo.extraRules = [{
users = [ "yoru" ];
commands = [{
command = "ALL";
options = [ "NOPASSWD" ];
}];
}];
};
services = {
xserver.enable = true;