Reorganization

This commit is contained in:
Lucas Thelen 2025-10-04 00:49:49 +00:00
parent 2821a76450
commit aa3b8519f9
21 changed files with 241 additions and 204 deletions

17
modules/users/lucas.nix Normal file
View file

@ -0,0 +1,17 @@
# User configuration for lucas
{ config, lib, pkgs, ... }:
{
programs.fish.enable = true;
users.users.${config.homelab.user} = {
isNormalUser = true;
extraGroups = [ "wheel" config.homelab.mediaGroup ];
shell = pkgs.fish;
packages = with pkgs; [ eza claude-code ];
hashedPassword = "$6$X.mw03yY/VFjDThj$t1I68HZz6NBihZGhiJ6Ct8ZuOufX6ZX9pydnK4puTjT1XKfMO1FY5VL1DwywJHrXOEJtohV99TmrABfjdBQY21";
};
# Create multimedia group for media services
users.groups.${config.homelab.mediaGroup} = { };
}