initial dendritic migration

This commit is contained in:
Semere Meharena Mebrahtom 2026-07-18 19:21:16 +02:00
parent 86fe70288b
commit 168633cf07
Signed by: semere
GPG key ID: 7FC937214DF30488
12 changed files with 254 additions and 147 deletions

26
modules/user.nix Normal file
View file

@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
let
cfg = config.dotfiles.user;
in
{
options.dotfiles.user = {
enable = lib.mkEnableOption "User configuration";
};
config = lib.mkIf cfg.enable {
users.users.semere = {
isNormalUser = true;
extraGroups = [
"wheel"
"networkmanager"
];
};
home-manager.users.semere = {
home.username = "semere";
home.homeDirectory = "/home/semere";
home.stateVersion = "26.05";
};
};
}