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 = {
modifier = "Mod4";
bars = [ ];
#: Keybindings {{{
keybindings =
let

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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