gitea repo
This commit is contained in:
commit
f610209aff
66 changed files with 2439 additions and 0 deletions
15
modules/user/default.nix
Normal file
15
modules/user/default.nix
Normal 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" ];
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue