diff options
author | 2025-03-30 14:17:02 +0300 | |
---|---|---|
committer | 2025-03-30 14:17:02 +0300 | |
commit | c17c6330bf92e206c91c4da6a8eafa75306fffa6 (patch) | |
tree | 16d2b4e96bcd0824537f4b292b62c8fbd747e0e7 /flake.nix | |
parent | feat(mora): add KiCAD (diff) | |
download | nixos-configuration-c17c6330bf92e206c91c4da6a8eafa75306fffa6.tar.gz nixos-configuration-c17c6330bf92e206c91c4da6a8eafa75306fffa6.tar.bz2 nixos-configuration-c17c6330bf92e206c91c4da6a8eafa75306fffa6.tar.lz nixos-configuration-c17c6330bf92e206c91c4da6a8eafa75306fffa6.tar.xz nixos-configuration-c17c6330bf92e206c91c4da6a8eafa75306fffa6.tar.zst nixos-configuration-c17c6330bf92e206c91c4da6a8eafa75306fffa6.zip |
feat: add `nixpkgs-pinned` to reduce updating huge packages
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -6,6 +6,7 @@ # NOTE: unless it is needed :wink: inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nixpkgs-pinned.url = "github:NixOS/nixpkgs/4fb937aabc3321e28d8bfe444d781afad09e0951"; nix-filter.url = "github:numtide/nix-filter"; @@ -73,9 +74,9 @@ fjordlauncher = { url = "github:unmojang/FjordLauncher"; # NOTE: re-following inputs breaks Cachix - inputs.nixpkgs.follows = "nixpkgs"; - inputs.nix-filter.follows = "nix-filter"; - inputs.flake-compat.follows = "flake-compat"; + #inputs.nixpkgs.follows = "nixpkgs"; + #inputs.nix-filter.follows = "nix-filter"; + #inputs.flake-compat.follows = "flake-compat"; }; niri = { @@ -91,9 +92,9 @@ wezterm = { url = "github:wezterm/wezterm?dir=nix"; # NOTE: re-following inputs breaks Cachix - inputs.nixpkgs.follows = "nixpkgs"; - inputs.flake-utils.follows = "flake-utils"; - inputs.rust-overlay.follows = "rust-overlay"; + #inputs.nixpkgs.follows = "nixpkgs"; + #inputs.flake-utils.follows = "flake-utils"; + #inputs.rust-overlay.follows = "rust-overlay"; }; }; |