added wishlist and more

This commit is contained in:
fwastring 2025-10-07 14:33:57 +02:00
parent 6aa4e31b67
commit 90c13a0728
8 changed files with 176 additions and 34 deletions

View file

@ -10,7 +10,7 @@
...
}:
let
# btusb = pkgs.callPackage ../../moduler/btusb.nix { inherit (config.boot.kernelPackages) kernel; };
btusb = pkgs.callPackage ../../moduler/btusb.nix { inherit (config.boot.kernelPackages) kernel; };
in
{
imports = [
@ -73,11 +73,11 @@ in
};
boot.kernelPackages = pkgs.linuxPackages_latest;
# boot.extraModulePackages = [
# (btusb.overrideAttrs (_: {
# patches = [ ../../moduler/btusb-add-mt7925.patch ];
# }))
# ];
boot.extraModulePackages = [
(btusb.overrideAttrs (_: {
patches = [ ../../moduler/btusb-add-mt7925.patch ];
}))
];
networking.hostName = myhostname;

View file

@ -29,6 +29,7 @@ in
( modulesDirectory + /services/mpd )
( modulesDirectory + /services/actual )
( modulesDirectory + /services/forgejo )
( modulesDirectory + /services/wishlist )
];
sops.defaultSopsFile = ../../secrets/sops.yaml;
@ -42,6 +43,11 @@ in
mpd = {
enable = true;
};
wishlist = {
enable = true;
host = "127.0.0.1";
domain = "wish.wastring.com";
};
forgejo = {
enable = true;