This commit is contained in:
Lucy Hochkamp 2024-01-03 17:51:12 +01:00
parent db89325b56
commit ae6fa526f2
No known key found for this signature in database
3 changed files with 95 additions and 62 deletions

View file

@ -217,9 +217,24 @@
daedalus = darwinSystem "aarch64-darwin" [ ./hosts/daedalus/default.nix ];
};
} // utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
homeConfigurations."fedora-vm" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit inputs; };
modules = [
hmConfig
{
ragon.vscode.enable = true;
}
];
};
devShell = pkgs.mkShell {
buildInputs = with pkgs; [ lefthook nixpkgs-fmt inputs.agenix.packages.${system}.agenix ];
};