25 lines
463 B
Nix
25 lines
463 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.groups.jashton = {};
|
|
users.groups.greetd = {};
|
|
users.users.jashton = {
|
|
isNormalUser = true;
|
|
description = "Josh Ashton";
|
|
group = "jashton";
|
|
extraGroups = [ "networkmanager" "wheel" "tss" "video" "audio" "input" ];
|
|
|
|
shell = pkgs.zsh;
|
|
};
|
|
|
|
users.users.root = {
|
|
shell = pkgs.zsh;
|
|
};
|
|
|
|
users.extraUsers.greetd = {
|
|
isSystemUser = true;
|
|
group = "greetd";
|
|
extraGroups = [ "input" ];
|
|
};
|
|
}
|