Use packages from stable which were from unstable before

This commit is contained in:
JuliusFreudenberger 2025-05-27 22:01:02 +03:00
parent fb88bd8c55
commit 289eecc497
3 changed files with 8 additions and 10 deletions

View file

@ -2,7 +2,7 @@
description = "NixOS configuration of Julius Freudenberger";
inputs = {
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
#nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
home-manager = {
@ -20,7 +20,7 @@
outputs = {
self,
nixpkgs,
nixpkgs-unstable,
#nixpkgs-unstable,
nixos-hardware,
home-manager,
auto-cpufreq,
@ -50,10 +50,10 @@
system = "x86_64-linux";
specialArgs = {
pkgs-unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
#pkgs-unstable = import nixpkgs-unstable {
# inherit system;
# config.allowUnfree = true;
#};
inherit inputs outputs username;
};