standardize on 23.11 release

This commit is contained in:
John Bowdre 2024-04-19 15:57:30 -05:00
parent 9d7db36307
commit 1d507c6768
2 changed files with 6 additions and 6 deletions

View file

@ -6,15 +6,15 @@
# - https://github.com/Misterio77/nix-config/ # - https://github.com/Misterio77/nix-config/
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
# You can access packages and modules from different nixpkgs revs # You can access packages and modules from different nixpkgs revs
# at the same time. Here's a working example: # at the same time. Here's a working example:
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.11"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
# Also see the 'stable-packages' overlay at 'nix/overlays/default.nix'. # Also see the 'unstable-packages' overlay at 'nix/overlays/default.nix'.
# Home manager # Home manager
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };

View file

@ -15,8 +15,8 @@
# When applied, the stable nixpkgs set (declared in the flake inputs) will # When applied, the stable nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.stable' # be accessible through 'pkgs.stable'
stable-packages = final: _prev: { unstable-packages = final: _prev: {
stable = import inputs.nixpkgs-stable { unstable = import inputs.nixpkgs-unstable {
system = final.system; system = final.system;
config.allowUnfree = true; config.allowUnfree = true;
}; };