unstable galadriel

This commit is contained in:
2025-10-14 22:08:09 +02:00
parent 93936eedae
commit 90da56e58f
4 changed files with 23 additions and 8 deletions
+5 -4
View File
@@ -26,7 +26,6 @@
blog-generator.url = "github:adrlau/blog-generator";
};
outputs =
@@ -49,7 +48,7 @@
# legolas
nixosConfigurations.legolas = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };
specialArgs = { inherit inputs system; };
modules = [
./hosts/legolas/configuration.nix
@@ -80,7 +79,7 @@
# aragon
nixosConfigurations.aragon = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };
specialArgs = { inherit inputs system; };
modules = [
./hosts/aragon/configuration.nix
@@ -107,8 +106,10 @@
# galadriel
nixosConfigurations.galadriel = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };
specialArgs = { inherit inputs system; };
modules = [
./modules/unstable.nix
./hosts/galadriel/configuration.nix
sops-nix.nixosModules.sops
+3 -3
View File
@@ -23,11 +23,11 @@
../../modules/vaultvarden.nix
#../../modules/vaultvarden.nix
../../modules/jellyfin.nix
../../modules/qbittorrent.nix
#../../modules/qbittorrent.nix # broken for now?:
../../modules/mealie.nix
../../modules/miniflux.nix
#../../modules/miniflux.nix
../../modules/ollama.nix
];
+1 -1
View File
@@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, unstable, ... }:
let
hostname = config.networking.hostName;
+14
View File
@@ -0,0 +1,14 @@
{ config, pkgs, inputs, system, ... }:
let
unstableOverlay = final: prev: {
unstable = import inputs.unstable {
inherit system;
config = prev.config;
};
};
in {
nixpkgs.overlays = [ unstableOverlay ];
}