Files
.dotfiles/system/security/users.nix
T
2026-07-31 02:15:47 -06:00

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" ];
};
}