This commit is contained in:
2026-03-28 12:10:55 +02:00
parent d68c4de197
commit bcb06844ca
8 changed files with 19 additions and 143 deletions

View File

@@ -129,7 +129,6 @@ in {
kdePackages.qt6ct
hyfetch
kitty
inputs.ghostty.packages.${pkgs.stdenv.hostPlatform.system}.ghostty
];
qt.enable = true;
@@ -145,10 +144,9 @@ in {
];
};
# environment.variables.XDG_TERMINAL = "${inputs.ghostty.packages.${pkgs.stdenv.hostPlatform.system}.ghostty}/bin/ghostty";
# environment.variables.XDG_SYSTEM_MONITOR = "${pkgs.htop}/bin/htop";
environment.variables.XDG_TERMINAL = "ghostty";
environment.variables.XDG_TERMINAL = "kitty";
environment.variables.XDG_SYSTEM_MONITOR = "htop";
environment.variables.GTK_USE_PORTAL = "1";
@@ -253,11 +251,6 @@ in {
source = config.lib.file.mkOutOfStoreSymlink "${configRoot}/config/dotfile_deps/DotfilesFont.otf";
};
home.file.".config/ghostty" = {
source = config.lib.file.mkOutOfStoreSymlink "${configRoot}/config/ghostty";
recursive = true;
};
home.file.".config/wlogout" = {
source = config.lib.file.mkOutOfStoreSymlink "${configRoot}/config/wlogout";
recursive = true;

View File

@@ -50,7 +50,6 @@ in
{
imports = [
./modules/atproto-pds.nix
./modules/wafrn.nix
./modules/cloudflare.nix
./modules/tangled.nix
../../modules/force.nix

View File

@@ -1,32 +0,0 @@
{
config,
inputs,
pkgs,
...
}:
{
# DONT ENABLE YET!!
services.wafrn = {
enable = false;
stateDir = "/var/lib/wafrn";
secretsFile = "/private/wafrn/secrets.env";
caddyConfigDir = "/private/wafrn/caddy";
# cloudflared doesnt need https
httpPort = 6767;
httpsPort = null;
environment = {
DOMAIN_NAME = "cyberworld.darkworld.download";
CACHE_DOMAIN = "cyberworld-cache.darkworld.download";
MEDIA_DOMAIN = "cyberworld-media.darkworld.download";
FRONTEND_MEDIA_URL = "https://cyberworld-media.darkworld.download";
FRONTEND_CACHE_URL = "https://cyberworld-cache.darkworld.download/api/cache?media=";
FRONTEND_FQDN_URL = "https://cyberworld.darkworld.download";
ACME_EMAIL = "kris@darkworld.download";
};
};
}