This commit is contained in:
Tao Tien 2025-11-13 08:38:07 -08:00
commit 08895d6867
2 changed files with 10 additions and 6 deletions

12
flake.lock generated
View file

@ -169,11 +169,11 @@
"rust-overlay": "rust-overlay" "rust-overlay": "rust-overlay"
}, },
"locked": { "locked": {
"lastModified": 1762914453, "lastModified": 1762973522,
"narHash": "sha256-AVc35rhjWimNIBr+kQvjX6tYJNKlm/RA/X2mfPZ+BhM=", "narHash": "sha256-CFyvvZvKDkTFF7niIQp5hhks5OR1u10H3e89chURCkg=",
"owner": "helix-editor", "owner": "helix-editor",
"repo": "helix", "repo": "helix",
"rev": "24b187a4bc4fed3c11541f6f4bd4f3a887842394", "rev": "948ac05aa0db64e0e5d00710db36eb244076e988",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -484,11 +484,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1762903129, "lastModified": 1763007974,
"narHash": "sha256-4vxtwKSBiiJ950ccLo8kQvBGwyNjhglOgWI5b/sjGXY=", "narHash": "sha256-XMgjrDIHonLqIjc1eMQkLeemGcNqqYU0Dq+zNmeMYOI=",
"owner": "0xc000022070", "owner": "0xc000022070",
"repo": "zen-browser-flake", "repo": "zen-browser-flake",
"rev": "d03a5917aef22219df1f97b6da6fe5b8039be8de", "rev": "eff1c79c78950ebb4ce70c3d51513e294cf30b52",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -182,6 +182,10 @@
}; };
nixpkgs.config = {allowUnfree = true;}; nixpkgs.config = {allowUnfree = true;};
nix.nixPath = ["nixpkgs=${pkgs.path}"]; nix.nixPath = ["nixpkgs=${pkgs.path}"];
nix.gc = {
automatic = true;
options = "--delete-older-than 7d";
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
system.stateVersion = lib.mkDefault "23.05"; system.stateVersion = lib.mkDefault "23.05";