Remove nvfetcher #158

Merged
tlater merged 6 commits from tlater/remove-nvfetcher into master 2025-09-29 06:32:44 +01:00
Showing only changes of commit 099666d14d - Show all commits

View file

@ -142,16 +142,16 @@
"./keys/hosts/" "./keys/hosts/"
"./keys/users/" "./keys/users/"
]; ];
nativeBuildInputs = [ sops-nix.packages.${system}.sops-import-keys-hook ];
packages = with pkgs; [ packages = nixpkgs.lib.attrValues {
sops-nix.packages.${system}.sops-init-gpg-key inherit (sops-nix.packages.${system}) sops-import-keys-hook sops-init-gpg-key;
deploy-rs.packages.${system}.default inherit (deploy-rs.packages.${system}) default;
nixpkgs-fmt };
];
}; };
minecraft = nixpkgs.legacyPackages.${system}.mkShell { packages = [ pkgs.packwiz ]; }; minecraft = nixpkgs.legacyPackages.${system}.mkShell {
packages = nixpkgs.lib.attrValues { inherit (nixpkgs.legacyPackages.${system}) packwiz; };
};
}; };
}; };
} }