diff --git a/flake.nix b/flake.nix index 844c330..861afd9 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ plasma-manager.inputs.home-manager.follows = "home-manager"; # You can access packages and modules from different nixpkgs revs # at the same time. Here's an working example: - nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; + nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.11"; # Also see the 'unstable-packages' overlay at 'overlays/default.nix'. jovian.url = "github:Jovian-Experiments/Jovian-NixOS"; diff --git a/nixos/hosts/queen/configuration.nix b/nixos/hosts/queen/configuration.nix index 1fac047..4c789ff 100644 --- a/nixos/hosts/queen/configuration.nix +++ b/nixos/hosts/queen/configuration.nix @@ -84,7 +84,7 @@ }; }; - environment.systemPackages = with pkgs; [ + environment.systemPackages = with pkgs.stable; [ akkoma age fzf diff --git a/overlays/default.nix b/overlays/default.nix index 8728c22..1f7d740 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -18,8 +18,8 @@ # When applied, the unstable nixpkgs set (declared in the flake inputs) will # be accessible through 'pkgs.unstable' - unstable-packages = final: _prev: { - unstable = import inputs.nixpkgs-unstable { + stable-packages = final: _prev: { + stable = import inputs.nixpkgs-stable { system = final.system; config.allowUnfree = true; };