marleyos/modules/nixos/base/users/default.nix

45 lines
991 B
Nix
Raw Normal View History

2025-02-18 04:24:53 +00:00
{
lib,
config,
...
}: let
2025-01-07 02:52:09 +00:00
my = {
name = "marley";
username = "punkfairie";
fullName = "Marley Rae";
email = "marley@punkfairie.net";
};
2025-02-18 04:24:53 +00:00
desktopPass = "$y$j9T$ztWf9WeUCENC2T12qS4mi1$51ihV/5cQ8mdJJrNe7MMguk4hPB61S5xHawsfi.1hL3";
serverPass = "$y$j9T$8hA7OWZsdQMHqYIy8LkYQ1$hFeP2ak3QA4FtoIYIwqPg10//ZOSZrAw1PzJj0PuGSA";
2025-01-07 02:52:09 +00:00
in {
marleyos.my = {
inherit (my) name username fullName email;
};
2025-01-07 02:29:12 +00:00
users = {
mutableUsers = false;
2025-02-19 00:40:30 +00:00
groups = {
"compat" = {
gid = 1000;
};
};
2025-01-07 02:54:18 +00:00
users."${my.name}" = {
2025-01-07 02:29:12 +00:00
isNormalUser = true;
2025-01-07 02:52:09 +00:00
description = my.fullName;
2025-02-18 04:24:53 +00:00
extraGroups =
2025-02-19 00:40:30 +00:00
["wheel" "compat"]
2025-02-18 04:24:53 +00:00
++ (lib.optional config.networking.networkmanager.enable "networkmanager")
++ (lib.optional config.virtualisation.docker.enable "docker");
hashedPassword =
if config.marleyos.isServer
then serverPass
else desktopPass;
2025-01-07 02:29:12 +00:00
};
};
2025-01-09 16:08:30 +00:00
home-manager.backupFileExtension = "bak";
2025-01-07 02:29:12 +00:00
}