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

View file

@ -1,6 +1,5 @@
{ {
pkgs, pkgs,
pkgs-unstable,
lib, lib,
... ...
}: { }: {
@ -8,7 +7,7 @@
transmission_4 transmission_4
filezilla filezilla
pkgs-unstable.element-desktop element-desktop
]; ];
programs = { programs = {

View file

@ -1,11 +1,10 @@
{ {
pkgs, pkgs,
pkgs-unstable,
lib, lib,
... ...
}: { }: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
pkgs-unstable.cryptomator cryptomator
keepassxc keepassxc
]; ];