Compare commits

..

1 commit

Author SHA1 Message Date
9b0d344339
feat: add hledger
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-10-26 13:32:09 +01:00
2 changed files with 45 additions and 30 deletions

View file

@ -114,18 +114,33 @@
} }
); );
nixosConfigurations = { nixosConfigurations =
let
hetzner = import ./lib/hetzner.nix { inherit inputs nixpkgs; };
in
{
# Workstations # Workstations
wodan = nixpkgs.lib.nixosSystem { wodan = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
modules = [ modules = [
{ nixpkgs.overlays = [ overlays.additions ]; }
{ {
nixpkgs.overlays = [ nixpkgs.overlays = [
overlays.additions
overlays.unstable-packages
tidalcycles.overlays.default tidalcycles.overlays.default
(_: prev: {
tailscale = prev.tailscale.overrideAttrs (old: {
checkFlags = builtins.map (
flag:
if prev.lib.hasPrefix "-skip=" flag then
flag + "|^TestGetList$|^TestIgnoreLocallyBoundPorts$|^TestPoller$"
else
flag
) old.checkFlags;
});
})
]; ];
} }
{ nixpkgs.overlays = [ tidalcycles.overlays.default ]; }
./hosts/wodan ./hosts/wodan
]; ];
}; };

View file

@ -1,6 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = with pkgs.unstable; [ home.packages = with pkgs; [
hledger hledger
hledger-ui hledger-ui
hledger-utils hledger-utils