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