This commit is contained in:
2026-03-03 00:35:35 +01:00
parent 8fe8a25615
commit e959d13d90
5 changed files with 71 additions and 15 deletions

16
modules/users/mo.nix Normal file
View File

@@ -0,0 +1,16 @@
{ inputs, ... }: {
flake.nixosModules.mo = { pkgs, ... }: {
users.users.mo = {
isNormalUser = true;
description = "Mohamed Chrayed";
extraGroups = [ "networkmanager" "wheel" "video" "audio" ];
shell = pkgs.zsh;
};
home-manager.users.mo = {
home.username = "mo";
home.homeDirectory = "/home/mo";
home.stateVersion = "25.11";
};
};
}