diff --git a/home/modules/hyprland/hyprland/config/windowrulev2.nix b/home/modules/hyprland/hyprland/config/windowrulev2.nix index 39bcb7b..3df1531 100755 --- a/home/modules/hyprland/hyprland/config/windowrulev2.nix +++ b/home/modules/hyprland/hyprland/config/windowrulev2.nix @@ -10,6 +10,7 @@ let flameshot = "(flameshot)"; bitwarden = "(.*Bitwarden.*)"; picture = "(.*Picture-in-Picture.*)"; + discord-popout = "(.*Discord Popout.*)"; signal = "(signal)"; vesktop = "(vesktop)"; code = "(code)"; @@ -29,6 +30,7 @@ let "maxsize 640 360, class:^${nomacs}$" "maxsize 800 450, title:^${bitwarden}$" "maxsize 720 400, title:^${picture}$" + "maxsize 720 400, title:^${discord-popout}$" ]; floatWindows = builtins.map (x: "float, " + x) [ @@ -42,12 +44,14 @@ let "class:^${flameshot}$" "class:^${scrcpy}$" "title:^(${picture})$" + "title:^(${discord-popout})$" "title:^${bitwarden}$" ]; pinWindows = builtins.map (x: "pin, " + x) [ "title:^${bitwarden}$" "title:^${picture}$" + "title:^${discord-popout}$" ]; idleInhibit = builtins.map (x: "idleinhibit, " + x) [ @@ -92,13 +96,13 @@ let "class:^${vlc}$" ]; in - maxsizeWindows - ++ floatWindows - ++ pinWindows - ++ idleInhibit - ++ workspaceInit1 - ++ workspaceInit2 - ++ workspaceInit3 - ++ workspaceInit4 - ++ centerWindows - ++ opaqueWindows +maxsizeWindows +++ floatWindows +++ pinWindows +++ idleInhibit +++ workspaceInit1 +++ workspaceInit2 +++ workspaceInit3 +++ workspaceInit4 +++ centerWindows +++ opaqueWindows diff --git a/nixos/modules/services/forgejo.nix b/nixos/modules/services/forgejo.nix index 16caf0d..e7a3cf3 100755 --- a/nixos/modules/services/forgejo.nix +++ b/nixos/modules/services/forgejo.nix @@ -92,16 +92,16 @@ in ); }; - # fileSystems."/var/lib/${service.name}" = { - # device = service.paths.path0; - # fsType = "none"; - # options = [ - # "bind" - # ]; - # depends = [ - # server.storage0.mount - # ]; - # }; + fileSystems."/var/lib/${service.name}" = { + device = service.paths.path0; + fsType = "none"; + options = [ + "bind" + ]; + depends = [ + server.storage0.mount + ]; + }; systemd.tmpfiles.rules = [ "Z ${service.paths.path0} 755 ${service.name} ${service.name} -"