unstable galadriel
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
@@ -1,4 +1,4 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
{ config, pkgs, lib, unstable, ... }:
|
||||
|
||||
let
|
||||
hostname = config.networking.hostName;
|
||||
|
||||
@@ -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 ];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user