apps migrated

This commit is contained in:
2026-03-03 22:42:00 +01:00
parent a2cc89d028
commit e3b903d010
47 changed files with 3 additions and 608 deletions

View File

@@ -1,23 +0,0 @@
{ inputs, ... }: {
flake.nixosModules.mo = { pkgs, config, ... }: {
home-manager.extraSpecialArgs = {};
sops.secrets."users/mo/password" = {
neededForUsers = true;
};
users.mutableUsers = false;
users.users.mo = {
isNormalUser = true;
description = "Mohamed Chrayed";
extraGroups = [ "networkmanager" "wheel" "video" "audio" ];
shell = pkgs.zsh;
hashedPasswordFile = config.sops.secrets."users/mo/password".path;
};
home-manager.users.mo = {
home.username = "mo";
home.homeDirectory = "/home/mo";
home.stateVersion = "25.11";
};
};
}