chore: small improvements

This commit is contained in:
Nydragon 2024-09-29 03:37:45 +02:00
parent ac274da95f
commit 59f5684ea0
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
7 changed files with 20 additions and 5 deletions

View file

@ -47,6 +47,7 @@ lib.mkIf osConfig.programs.sway.enable {
''; '';
config = { config = {
modifier = "Mod4"; modifier = "Mod4";
bars = [ ];
#: Keybindings {{{ #: Keybindings {{{
keybindings = keybindings =
let let

View file

@ -94,7 +94,6 @@
eza eza
bat bat
swaynotificationcenter swaynotificationcenter
pop-icon-theme
]; ];
modules.media.enableAll = true; modules.media.enableAll = true;

View file

@ -16,6 +16,7 @@
./obsidian-livesync ./obsidian-livesync
./headscale.nix ./headscale.nix
../../modules/nix ../../modules/nix
../../modules/users/ny.nix
]; ];
age.secrets = { age.secrets = {

View file

@ -1,2 +1,5 @@
[migrations] [migrations]
ALLOWED_DOMAINS=github.com,*.github.com. ALLOWED_DOMAINS=github.com,*.github.com
[server]
SSH_PORT=222

View file

@ -2,10 +2,12 @@
{ {
# Containers # Containers
virtualisation.oci-containers.containers."forgejo" = { virtualisation.oci-containers.containers."forgejo" = {
image = "codeberg.org/forgejo/forgejo:7"; image = "codeberg.org/forgejo/forgejo:8";
environment = { environment = {
"USER_GID" = "1000"; "USER_GID" = "1000";
"USER_UID" = "1000"; "USER_UID" = "1000";
FORGEJO__migrations__ALLOWED_DOMAINS = true;
FORGEJO__server__SSH_PORT = 222;
}; };
volumes = [ volumes = [
#"/etc/localtime:/etc/localtime:ro" #"/etc/localtime:/etc/localtime:ro"

View file

@ -79,7 +79,7 @@ mkIf config.services.headscale.enable {
}; };
services.headscale.settings.acl_policy_path = pkgs.writeTextFile { services.headscale.settings.acl_policy_path = pkgs.writeTextFile {
name = "headscale-acl.json"; name = "headscale-acl.hujson";
text = builtins.toJSON { text = builtins.toJSON {
acls = [ acls = [
(mkAcl [ "tag:client" ] [ "tag:client:*" ]) # client -> client (mkAcl [ "tag:client" ] [ "tag:client:*" ]) # client -> client

View file

@ -1,7 +1,16 @@
{ ... }: { pkgs, ... }:
{ {
qt = { qt = {
enable = true; enable = true;
platformTheme = "gtk2"; platformTheme = "gtk2";
#platformTheme = "qt5ct";
#style = "kvantum";
}; };
environment.systemPackages = with pkgs; [
vimix-icon-theme
pop-icon-theme
catppuccin-papirus-folders
catppuccin-kvantum
];
} }