even more backups of things
This commit is contained in:
parent
b8d125d448
commit
630f9b0074
46 changed files with 1166 additions and 197 deletions
16
users/jay/default.nix
Normal file
16
users/jay/default.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{
|
||||
users.users.jay = {
|
||||
home =
|
||||
if pkgs.stdenv.isLinux then
|
||||
lib.mkDefault "/home/jay"
|
||||
else if pkgs.stdenv.isDarwin then
|
||||
lib.mkDefault "/Users/jay"
|
||||
else
|
||||
abort "Unsupported OS";
|
||||
} // lib.optionalAttrs pkgs.stdenv.isLinux {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
# hashedPassword = "";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue