From 59f5684ea09b795b6f8d29246d8861b3745fc8e9 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sun, 29 Sep 2024 03:37:45 +0200 Subject: [PATCH] chore: small improvements --- home/sway/default.nix | 1 + hosts/brontes/configuration.nix | 1 - hosts/raptus/configuration.nix | 1 + hosts/raptus/forgejo/app.ini | 5 ++++- hosts/raptus/forgejo/default.nix | 4 +++- hosts/raptus/headscale.nix | 2 +- modules/themes/default.nix | 11 ++++++++++- 7 files changed, 20 insertions(+), 5 deletions(-) diff --git a/home/sway/default.nix b/home/sway/default.nix index 7623bb8..a6fb4cb 100644 --- a/home/sway/default.nix +++ b/home/sway/default.nix @@ -47,6 +47,7 @@ lib.mkIf osConfig.programs.sway.enable { ''; config = { modifier = "Mod4"; + bars = [ ]; #: Keybindings {{{ keybindings = let diff --git a/hosts/brontes/configuration.nix b/hosts/brontes/configuration.nix index ab231db..4d97fb9 100644 --- a/hosts/brontes/configuration.nix +++ b/hosts/brontes/configuration.nix @@ -94,7 +94,6 @@ eza bat swaynotificationcenter - pop-icon-theme ]; modules.media.enableAll = true; diff --git a/hosts/raptus/configuration.nix b/hosts/raptus/configuration.nix index 76bb0b3..9a31422 100644 --- a/hosts/raptus/configuration.nix +++ b/hosts/raptus/configuration.nix @@ -16,6 +16,7 @@ ./obsidian-livesync ./headscale.nix ../../modules/nix + ../../modules/users/ny.nix ]; age.secrets = { diff --git a/hosts/raptus/forgejo/app.ini b/hosts/raptus/forgejo/app.ini index 31df07e..ecdef13 100644 --- a/hosts/raptus/forgejo/app.ini +++ b/hosts/raptus/forgejo/app.ini @@ -1,2 +1,5 @@ [migrations] -ALLOWED_DOMAINS=github.com,*.github.com. +ALLOWED_DOMAINS=github.com,*.github.com + +[server] +SSH_PORT=222 diff --git a/hosts/raptus/forgejo/default.nix b/hosts/raptus/forgejo/default.nix index 504f765..e5ed1d1 100644 --- a/hosts/raptus/forgejo/default.nix +++ b/hosts/raptus/forgejo/default.nix @@ -2,10 +2,12 @@ { # Containers virtualisation.oci-containers.containers."forgejo" = { - image = "codeberg.org/forgejo/forgejo:7"; + image = "codeberg.org/forgejo/forgejo:8"; environment = { "USER_GID" = "1000"; "USER_UID" = "1000"; + FORGEJO__migrations__ALLOWED_DOMAINS = true; + FORGEJO__server__SSH_PORT = 222; }; volumes = [ #"/etc/localtime:/etc/localtime:ro" diff --git a/hosts/raptus/headscale.nix b/hosts/raptus/headscale.nix index fbf5625..ad05686 100644 --- a/hosts/raptus/headscale.nix +++ b/hosts/raptus/headscale.nix @@ -79,7 +79,7 @@ mkIf config.services.headscale.enable { }; services.headscale.settings.acl_policy_path = pkgs.writeTextFile { - name = "headscale-acl.json"; + name = "headscale-acl.hujson"; text = builtins.toJSON { acls = [ (mkAcl [ "tag:client" ] [ "tag:client:*" ]) # client -> client diff --git a/modules/themes/default.nix b/modules/themes/default.nix index bfbc97f..9ae4888 100644 --- a/modules/themes/default.nix +++ b/modules/themes/default.nix @@ -1,7 +1,16 @@ -{ ... }: +{ pkgs, ... }: { qt = { enable = true; platformTheme = "gtk2"; + #platformTheme = "qt5ct"; + #style = "kvantum"; }; + + environment.systemPackages = with pkgs; [ + vimix-icon-theme + pop-icon-theme + catppuccin-papirus-folders + catppuccin-kvantum + ]; }