switch to stable

Revert "radish: fix deprecation warning"

This reverts commit 2d1d2c5839.
This commit is contained in:
Joakim Repomaa
2025-01-30 15:23:21 +02:00
parent 98a0a95166
commit 1050e28b9f
6 changed files with 37 additions and 309 deletions

View File

@@ -1,7 +1,7 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-small.url = "github:NixOS/nixpkgs/nixos-unstable-small";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
nextcloud = {
url = "github:onny/nixos-nextcloud-testumgebung";
inputs.nixpkgs.follows = "nixpkgs";
@@ -17,7 +17,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
url = "github:nix-community/home-manager/release-24.11";
inputs = {
nixpkgs.follows = "nixpkgs";
};
@@ -44,7 +44,7 @@
};
ksoloti-pr.url = "github:repomaa/nixpkgs/pkg/ksoloti";
};
outputs = { nixpkgs, nixpkgs-small, gtrackmap, ksoloti-pr, lanzaboote, nixos-hardware, auto-cpufreq, home-manager, ... }@inputs: {
outputs = { nixpkgs, nixpkgs-unstable, gtrackmap, ksoloti-pr, lanzaboote, nixos-hardware, auto-cpufreq, home-manager, ... }@inputs: {
nixosConfigurations.freun-dev = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = inputs;
@@ -57,7 +57,7 @@
nixosConfigurations.radish = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
specialArgs = {
pkgs-small = import nixpkgs-small { inherit system; };
pkgs-unstable = import nixpkgs-unstable { inherit system; };
ksoloti-pr = import ksoloti-pr { inherit system; };
inherit inputs system;
};