Hledger #1

Merged
Taneb merged 2 commits from hledger into main 2024-06-29 06:55:56 +01:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit 530edccdf5 - Show all commits

View File

@ -55,6 +55,13 @@
};
nixpkgs.config.allowUnfree = true;
};
nixosModules.hledger = {...}: {
services.hledger-web = {
enable = true;
allow = "edit";
};
networking.firewall.allowedTCPPorts = [ 5000 ];
};
nixosModules.samba = {...}: {
services.samba = {
enable = true;
@ -85,6 +92,7 @@
self.nixosModules.zfs
self.nixosModules.plex
self.nixosModules.samba
self.nixosModules.hledger
];
};
};