configuration/common: add bij to programs
This commit is contained in:
parent
db61a104ff
commit
606343b11f
@ -7,6 +7,7 @@
|
||||
htop
|
||||
parted
|
||||
tmux
|
||||
bij
|
||||
colmena
|
||||
vim
|
||||
agenix
|
||||
|
21
flake.lock
21
flake.lock
@ -21,6 +21,26 @@
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"bij": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1712512137,
|
||||
"narHash": "sha256-crxzFc3lc/ViHYVK+IKmIbifxF6zyHgSwhBKd0lLgWE=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "221052d8465f0a4437cb8cae3cc9998c87e88f68",
|
||||
"revCount": 2,
|
||||
"type": "git",
|
||||
"url": "https://git.clerie.de/clerie/bij.git"
|
||||
},
|
||||
"original": {
|
||||
"type": "git",
|
||||
"url": "https://git.clerie.de/clerie/bij.git"
|
||||
}
|
||||
},
|
||||
"chaosevents": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
@ -229,6 +249,7 @@
|
||||
"root": {
|
||||
"inputs": {
|
||||
"agenix": "agenix",
|
||||
"bij": "bij",
|
||||
"chaosevents": "chaosevents",
|
||||
"fernglas": "fernglas",
|
||||
"fieldpoc": "fieldpoc",
|
||||
|
@ -7,6 +7,10 @@
|
||||
url = "github:ryantm/agenix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
bij = {
|
||||
url = "git+https://git.clerie.de/clerie/bij.git";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
chaosevents = {
|
||||
url = "git+https://git.clerie.de/clerie/chaosevents.git";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ self, nixpkgs, agenix, chaosevents, fernglas, fieldpoc, nixos-exporter, solid-xmpp-alarm, ... }@inputs:
|
||||
{ self, nixpkgs, agenix, bij, chaosevents, fernglas, fieldpoc, nixos-exporter, solid-xmpp-alarm, ... }@inputs:
|
||||
|
||||
rec {
|
||||
generateNixosSystem = {
|
||||
@ -30,6 +30,8 @@ rec {
|
||||
(_: _: {
|
||||
inherit (agenix.packages."x86_64-linux")
|
||||
agenix;
|
||||
inherit (bij.packages."${system}")
|
||||
bij;
|
||||
inherit (chaosevents.packages."x86_64-linux")
|
||||
chaosevents;
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user