Update NixOS configuration

This commit is contained in:
2026-05-31 16:21:43 +08:00
parent 45e0f28674
commit a0771a273e
9 changed files with 172 additions and 13 deletions
+11
View File
@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
programs.clash-verge = {
enable = true;
package = pkgs.clash-verge-rev;
autoStart = false;
tunMode = true;
serviceMode = true;
};
}
+7
View File
@@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./clash.nix
];
}