diff --git a/home/gui/proxy/gui-for-singbox.nix b/home/gui/proxy/gui-for-singbox.nix new file mode 100644 index 0000000..cddd837 --- /dev/null +++ b/home/gui/proxy/gui-for-singbox.nix @@ -0,0 +1,5 @@ +{pkgs, ...}: { + home.packages = with pkgs; [ + gui-for-singbox + ]; +} diff --git a/hosts/default.nix b/hosts/default.nix index 2a0aefb..a09e8ef 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -7,7 +7,6 @@ imports = with inputs; [ ./${hostname} chaotic.nixosModules.default - daeuniverse.nixosModules.daed disko.nixosModules.disko stylix.nixosModules.stylix home-manager.nixosModules.home-manager diff --git a/hosts/dos/env.nix b/hosts/dos/env.nix index cad0281..17c6d85 100644 --- a/hosts/dos/env.nix +++ b/hosts/dos/env.nix @@ -20,9 +20,6 @@ QEMU-VM-Use-Case = true; ### See https://github.com/qemu/qemu ; https://github.com/virt-manager/virt-manager - Transparent-Proxy = false; - ### See https://github.com/daeuniverse/daed - # Options ## System related BootLoader = "systemd-boot"; diff --git a/hosts/example/env.nix b/hosts/example/env.nix index be30f97..22d95b1 100644 --- a/hosts/example/env.nix +++ b/hosts/example/env.nix @@ -20,9 +20,6 @@ QEMU-VM-Use-Case = false; ### See https://github.com/qemu/qemu ; https://github.com/virt-manager/virt-manager - Transparent-Proxy = false; - ### See https://github.com/daeuniverse/daed - # Options ## System related BootLoader = "systemd-boot"; diff --git a/modules/services/daed.nix b/modules/services/daed.nix deleted file mode 100644 index eafe34d..0000000 --- a/modules/services/daed.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ - hostname, - lib, - ... -}: -with lib; let - inherit (import ../../hosts/${hostname}/env.nix) Transparent-Proxy; -in { - config = mkIf Transparent-Proxy { - services.daed = { - enable = true; - }; - }; -}