gitea repo

This commit is contained in:
fred 2025-06-20 11:59:24 -07:00
commit f610209aff
66 changed files with 2439 additions and 0 deletions

15
modules/user/default.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }: {
config = {
home-manager.users.${config.user} = { pkgs, ... }: {
home.stateVersion = "25.05";
};
users.users.${config.user} = {
isNormalUser = true;
description = "${config.user}";
extraGroups = [ "wheel" ];
};
};
}