1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
This commit is contained in:
2026-01-25 13:47:49 +01:00
parent eae1a7a71b
commit 91a650953a
3 changed files with 27 additions and 1 deletions

View File

@@ -189,6 +189,7 @@ in
qrencode qrencode
pkgs.agenix pkgs.agenix
pkgs.wetter
pkgs.alarm pkgs.alarm
(pkgs.writers.writeDashBin "worldradio" '' (pkgs.writers.writeDashBin "worldradio" ''

23
flake.lock generated
View File

@@ -666,7 +666,8 @@
"tinc-graph": "tinc-graph", "tinc-graph": "tinc-graph",
"treefmt-nix": "treefmt-nix_2", "treefmt-nix": "treefmt-nix_2",
"voidrice": "voidrice", "voidrice": "voidrice",
"wallpapers": "wallpapers" "wallpapers": "wallpapers",
"wetter": "wetter"
} }
}, },
"rust-analyzer-src": { "rust-analyzer-src": {
@@ -999,6 +1000,26 @@
"repo": "wallpapers", "repo": "wallpapers",
"type": "github" "type": "github"
} }
},
"wetter": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1768340583,
"narHash": "sha256-k/XWWgjWHURh2w20ScXJgALnDB3ipT/JG6HoWG1eIgI=",
"owner": "4z3",
"repo": "wetter",
"rev": "076b6a1bd9f7e96a96c2488ee823d5e75a60a597",
"type": "github"
},
"original": {
"owner": "4z3",
"repo": "wetter",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View File

@@ -24,6 +24,7 @@
voidrice.url = "github:Lukesmithxyz/voidrice"; voidrice.url = "github:Lukesmithxyz/voidrice";
wallpapers.url = "github:kmein/wallpapers"; wallpapers.url = "github:kmein/wallpapers";
nix-topology.url = "github:oddlama/nix-topology"; nix-topology.url = "github:oddlama/nix-topology";
wetter.url = "github:4z3/wetter";
voidrice.flake = false; voidrice.flake = false;
wallpapers.flake = false; wallpapers.flake = false;
@@ -58,6 +59,7 @@
scripts.inputs.nixpkgs.follows = "nixpkgs"; scripts.inputs.nixpkgs.follows = "nixpkgs";
stylix.inputs.nixpkgs.follows = "nixpkgs"; stylix.inputs.nixpkgs.follows = "nixpkgs";
tinc-graph.inputs.nixpkgs.follows = "nixpkgs"; tinc-graph.inputs.nixpkgs.follows = "nixpkgs";
wetter.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = outputs =
@@ -81,6 +83,7 @@
nix-index-database, nix-index-database,
stylix, stylix,
voidrice, voidrice,
wetter,
... ...
}: }:
let let
@@ -262,6 +265,7 @@
}; };
# packaged from inputs # packaged from inputs
wetter = wetter.packages.${prev.stdenv.hostPlatform.system}.wetter;
agenix = agenix.packages.${prev.stdenv.hostPlatform.system}.default; agenix = agenix.packages.${prev.stdenv.hostPlatform.system}.default;
pun-sort-api = scripts.packages.${prev.stdenv.hostPlatform.system}.pun-sort-api; pun-sort-api = scripts.packages.${prev.stdenv.hostPlatform.system}.pun-sort-api;
alarm = scripts.packages.${prev.stdenv.hostPlatform.system}.alarm; alarm = scripts.packages.${prev.stdenv.hostPlatform.system}.alarm;