nix check fix
All checks were successful
gitea-deepak/nixconf/pipeline/head This commit looks good

This commit is contained in:
2025-03-18 11:43:20 -05:00
parent f0dce6cde0
commit bbe9475175
3 changed files with 7 additions and 2 deletions

View File

@@ -28,17 +28,22 @@ in
};
modules = [
./maxos/configuration.nix
inputs.sops-nix.nixosModules.sops
homeManager.nixosModules.home-manager
{
home-manager.extraSpecialArgs = {
withGUI = true;
gitSigningKey = "976F3357369149AB";
rundirnum = "1000";
inherit nixpkgs-unstable;
};
home-manager.useGlobalPkgs = true;
home-manager.users.deepak = {
imports = [ ../home/deepak/home.nix ];
};
home-manager.sharedModules = [
inputs.sops-nix.homeManagerModules.sops
];
}
];
};