Compare commits

..

2 commits

Author SHA1 Message Date
6d93a61e8c
Add Seerr (Jellyseerr) 2026-04-04 20:00:19 +03:00
c0d075b970
Add support for nixos-unstable packages 2026-04-04 19:59:40 +03:00

View file

@ -38,20 +38,23 @@
{ {
nixosConfigurations = { nixosConfigurations = {
plexy = nixpkgs.lib.nixosSystem { plexy = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; specialArgs =
let
system = "x86_64-linux";
in
{
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
pkgs-unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
};
modules = [ modules = [
./hosts/plexy ./hosts/plexy
{
nixpkgs = {
overlays = [
(final: prev: {
unstable = import nixpkgs-unstable {
system = final.system;
};
})
];
};
}
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;