Files
.dotfiles/system/security/users.nix
T
jashton 0201fb5fcc switched to niri.
added basic 3/4 finger gestures.

nixos: gen 161 @ nix-pad — 2026-07-30 21:40
26.05.20260724.597283a (Yarara)

nixos: gen 162 @ nix-pad — 2026-07-30 21:45
26.05.20260724.597283a (Yarara)
2026-07-30 21:50:31 -06:00

18 lines
321 B
Nix

{ config, pkgs, ... }:
{
users.groups.jashton = {};
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;
};
}