separate xorg and i3

This commit is contained in:
Noah Masur
2022-04-28 21:56:21 -04:00
parent 2a225debe5
commit 2a5c896322
9 changed files with 110 additions and 92 deletions

20
modules/system/user.nix Normal file
View File

@@ -0,0 +1,20 @@
{ user, ... }: {
# Define a user account. Don't forget to set a password with passwd.
users.users.${user} = {
# Create a home directory for human user
isNormalUser = true;
# Automatically create a password to start
initialPassword = "changeme";
# Enable sudo privileges
extraGroups = [
"wheel" # Sudo privileges
"i2c" # Access to external monitors
];
};
}