summaryrefslogtreecommitdiff
path: root/hardware
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2024-12-24 15:06:18 -0500
committerAndrew Opalach <andrew@akon.city> 2024-12-24 16:48:58 -0500
commit0f47fc2c37f644a2093ec904d8fc9e16ee2105c0 (patch)
treef1c53412a307b058584c5a3f91bbd976e93b73d8 /hardware
parent5206f05fdf77bb65c125ddb133cf46a59608c671 (diff)
downloadcamu-0f47fc2c37f644a2093ec904d8fc9e16ee2105c0.tar.gz
camu-0f47fc2c37f644a2093ec904d8fc9e16ee2105c0.tar.bz2
camu-0f47fc2c37f644a2093ec904d8fc9e16ee2105c0.zip
Missed a few spots
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'hardware')
-rw-r--r--hardware/cmsb-001/configuration.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/hardware/cmsb-001/configuration.nix b/hardware/cmsb-001/configuration.nix
index ca0da74..53217cd 100644
--- a/hardware/cmsb-001/configuration.nix
+++ b/hardware/cmsb-001/configuration.nix
@@ -4,14 +4,14 @@
#"${modulesPath}/installer/sd-card/sd-image.nix"
];
- users.users.akiyo = {
+ users.users.naunet = {
isNormalUser = true;
uid = 1000;
extraGroups = [ "wheel" "input" "audio" "video" "render" "disk" "cdrom" ];
};
security.sudo.extraRules = [
- { users = [ "akiyo" ]; commands = [ { command = "ALL"; options = [ "NOPASSWD" ]; } ]; }
+ { users = [ "naunet" ]; commands = [ { command = "ALL"; options = [ "NOPASSWD" ]; } ]; }
];
nix = {
@@ -20,7 +20,7 @@
system-features = [ "big-parallel" ];
auto-optimise-store = true;
download-buffer-size = 134217728;
- trusted-users = [ "akiyo" ];
+ trusted-users = [ "naunet" ];
};
gc.automatic = false;
optimise.automatic = true;
@@ -131,7 +131,7 @@
services.cage = {
enable = true;
- user = "akiyo";
+ user = "naunet";
environment = {
WLR_LIBINPUT_NO_DEVICES = "1";
};