Carve away

This commit is contained in:
2026-05-03 00:41:36 -05:00
parent 94e646392b
commit 418835c0c0
6 changed files with 155 additions and 101 deletions
+14
View File
@@ -0,0 +1,14 @@
#
# User configuration
#
{ config, lib, pkgs, ... }:
{
users.users.salt = {
isNormalUser = true;
description = "Salt";
extraGroups = [ "wheel" ];
shell = pkgs.bash;
home = "/home/salt";
};
}