(Snow)flakes for fluffy winters.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(nixpkgs): add stable pin Adds stable pin to flake

+24 -2
+17
flake.lock
··· 137 137 "type": "github" 138 138 } 139 139 }, 140 + "nixpkgs-stable": { 141 + "locked": { 142 + "lastModified": 1777673416, 143 + "narHash": "sha256-5c2POKPOjU40Kh0MirOdScBLG0bu9TAuPYAtPRNZMBs=", 144 + "owner": "nixos", 145 + "repo": "nixpkgs", 146 + "rev": "26ef669cffa904b6f6832ab57b77892a37c1a671", 147 + "type": "github" 148 + }, 149 + "original": { 150 + "owner": "nixos", 151 + "ref": "nixos-25.11", 152 + "repo": "nixpkgs", 153 + "type": "github" 154 + } 155 + }, 140 156 "nixpkgs_2": { 141 157 "locked": { 142 158 "lastModified": 1777578337, ··· 182 198 "nixcord": "nixcord", 183 199 "nixos-hardware": "nixos-hardware", 184 200 "nixpkgs": "nixpkgs_2", 201 + "nixpkgs-stable": "nixpkgs-stable", 185 202 "plasma-manager": "plasma-manager" 186 203 } 187 204 }
+7 -2
flake.nix
··· 4 4 # https://nixos.org/manual/nix/unstable/command-ref/new-cli/nix3-flake.html#flake-inputs 5 5 inputs = { 6 6 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 7 + nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-25.11"; 7 8 8 9 home-manager = { 9 10 url = "github:nix-community/home-manager/master"; ··· 25 26 }; 26 27 }; 27 28 28 - outputs = { self, nixpkgs, home-manager, plasma-manager, nixcord, nixos-hardware, ... }: 29 + outputs = { self, nixpkgs, nixpkgs-stable, home-manager, plasma-manager, nixcord, nixos-hardware, ... }: 29 30 let 30 31 system = "x86_64-linux"; 31 32 stateVersion = "25.11"; 33 + pkgs-stable = import nixpkgs-stable { 34 + inherit system; 35 + config.allowUnfree = true; 36 + }; 32 37 in { 33 38 nixosConfigurations.ryuganhana = nixpkgs.lib.nixosSystem { 34 39 inherit system; 35 40 specialArgs = { 36 - inherit stateVersion; 41 + inherit stateVersion pkgs-stable; 37 42 }; 38 43 modules = [ 39 44 ./consumers/ryuganhana/configuration.nix