add retiolum as flake
This commit is contained in:
parent
af933bbf01
commit
f91f829f1d
3 changed files with 25 additions and 11 deletions
17
flake.lock
17
flake.lock
|
@ -793,6 +793,22 @@
|
|||
"url": "ssh://gitea@git.ingolf-wagner.de/palo/nixos-private-assets.git"
|
||||
}
|
||||
},
|
||||
"retiolum": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1664394335,
|
||||
"narHash": "sha256-7dMfkp2+cwjzgzrSCsDzdktMha+SdPOm/jr49iOOkoI=",
|
||||
"owner": "krebs",
|
||||
"repo": "retiolum",
|
||||
"rev": "86208b5a747d7aa661240b2d5c2f229f2ed76959",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "krebs",
|
||||
"repo": "retiolum",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"revealjs": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
|
@ -824,6 +840,7 @@
|
|||
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||
"polygon-art": "polygon-art",
|
||||
"private_assets": "private_assets",
|
||||
"retiolum": "retiolum",
|
||||
"secrets": "secrets",
|
||||
"sops-nix": "sops-nix"
|
||||
}
|
||||
|
|
|
@ -55,6 +55,11 @@
|
|||
url = "git+ssh://gitea@git.ingolf-wagner.de/palo/nixos-private-assets.git?ref=main";
|
||||
flake = false;
|
||||
};
|
||||
retiolum = {
|
||||
url = "github:krebs/retiolum";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
outputs =
|
||||
|
@ -74,6 +79,7 @@
|
|||
, private_assets
|
||||
, secrets
|
||||
, sops-nix
|
||||
, retiolum
|
||||
}:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
|
@ -128,7 +134,7 @@
|
|||
];
|
||||
};
|
||||
specialArgs = {
|
||||
inherit private_assets;
|
||||
inherit private_assets retiolum;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -1,13 +1,4 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
|
||||
retiolum = pkgs.fetchgit {
|
||||
url = "https://github.com/krebs/retiolum";
|
||||
rev = "5b067937a10ea43f88f14cc6e0a5485c2ddcc826";
|
||||
sha256 = "0kczrr6dr5dmhx2kbanw46w6ig2v3w42rqhjanv87xhwkgw81l08";
|
||||
};
|
||||
|
||||
in
|
||||
{ config, pkgs, lib, retiolum, ... }:
|
||||
{
|
||||
|
||||
imports = [ ../../modules ];
|
||||
|
|
Loading…
Reference in a new issue