Compare commits

..

2 commits

Author SHA1 Message Date
8cd3a19ed1
Add Seerr (Jellyseerr) 2026-04-04 20:02:46 +03:00
669a9bb009
Add support for nixos-unstable packages 2026-04-04 20:02:12 +03:00

View file

@ -38,23 +38,20 @@
{
nixosConfigurations = {
plexy = nixpkgs.lib.nixosSystem {
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;
};
};
system = "x86_64-linux";
modules = [
./hosts/plexy
{
nixpkgs = {
overlays = [
(final: prev: {
unstable = import nixpkgs-unstable {
system = final.system;
};
})
];
};
}
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;