chore: update flake.lock

This commit is contained in:
matt1432 2024-04-18 14:37:46 -04:00
parent 639a623db3
commit a676406150
12 changed files with 72 additions and 71 deletions

View file

@ -16,7 +16,6 @@
./pkgs
nur.nixosModules.nur
nh.nixosModules.default
home-manager.nixosModules.home-manager
../modules/arion
@ -28,7 +27,7 @@
config.allowUnfree = true;
overlays = import ./overlays inputs;
};
boot.tmp.cleanOnBoot = true;
boot.tmp.useTmpfs = true;
nix = {
# Allow deleting store files with '.' in the name
@ -57,8 +56,10 @@
};
};
nh = {
programs.nh = {
enable = true;
package = nh.packages.${pkgs.system}.default;
# weekly cleanup
clean = {
enable = true;

View file

@ -6,7 +6,7 @@
environment.systemPackages = with pkgs; [
(writeShellApplication {
name = "rebuild-no-cache";
runtimeInputs = [config.nh.package];
runtimeInputs = [config.programs.nh.package];
text = ''
nh os switch -- --option binary-caches "https://cache.nixos.org" "$@"
'';