migrate server to unstable for servarr update

This commit is contained in:
sadan 2025-03-12 22:38:06 -04:00
parent bd7cf25145
commit 0127b58b58
No known key found for this signature in database

View file

@ -86,11 +86,11 @@
}; };
nixosConfigurations = { nixosConfigurations = {
nixd = nixpkgs.lib.nixosSystem { }; nixd = nixpkgs.lib.nixosSystem { };
serverpc = nixpkgs.lib.nixosSystem rec { serverpc = nixpkgs-unstable.lib.nixosSystem rec {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
unstable = import nixpkgs-unstable { stable = import nixpkgs {
inherit system; inherit system;
config = { config = {
allowUnfree = true; allowUnfree = true;
@ -102,12 +102,12 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
_module.args = { _module.args = {
stable = pkgs; unstable = pkgs;
}; };
} }
) )
./boxes/serverpc/configuration.nix ./boxes/serverpc/configuration.nix
inputs.home-manager.nixosModules.default inputs.home-manager-unstable.nixosModules.default
]; ];
}; };
desktopIso = nixpkgs.lib.nixosSystem { desktopIso = nixpkgs.lib.nixosSystem {