nix-da/modules/users/ny.nix
Nydragon bea322947a
Some checks failed
/ test (push) Failing after 1s
feat: add meta.username option
2025-01-31 17:21:04 +01:00

16 lines
270 B
Nix

{ config, pkgs, ... }:
let
inherit (config.modules.meta) username;
in
{
users.users.${username} = {
isNormalUser = true;
createHome = true;
extraGroups = [
"wheel"
];
shell = pkgs.fish;
uid = 1000;
};
programs.fish.enable = true;
}