feat:add_gfs&&remove_daed

This commit is contained in:
dichgrem
2025-08-26 21:42:29 +08:00
parent 72609b2135
commit 143d1e16a4
5 changed files with 5 additions and 21 deletions

View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
gui-for-singbox
];
}

View File

@@ -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

View File

@@ -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";

View File

@@ -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";

View File

@@ -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;
};
};
}