diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-27 09:23:50 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-27 09:23:50 +0100 |
| commit | 23dc7330b8ef7476eec432a3274f40b757254a37 (patch) | |
| tree | 0b761b65fdf035943b319893025773658af05a8c /common/home | |
| parent | 22fe4d7ba0d25e9e413a7ea1f435bbbc4fa35af9 (diff) | |
add nextcloud-client
Diffstat (limited to 'common/home')
| -rw-r--r-- | common/home/default.nix | 1 | ||||
| -rw-r--r-- | common/home/hyprland/default.nix | 10 | ||||
| -rw-r--r-- | common/home/services/nextcloud-client/default.nix | 4 |
3 files changed, 13 insertions, 2 deletions
diff --git a/common/home/default.nix b/common/home/default.nix index fbd3204..524c295 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -67,6 +67,7 @@ packages = [ pkgs.unstable.supertuxkart pkgs.krita pkgs.uxplay + pkgs.waydroid-helper ]; in { diff --git a/common/home/hyprland/default.nix b/common/home/hyprland/default.nix index 983ba21..ff31c54 100644 --- a/common/home/hyprland/default.nix +++ b/common/home/hyprland/default.nix @@ -21,10 +21,12 @@ "$mod+Ctrl, S, togglesplit," "$mod, Escape, exec, hyprlock" - "$mod, Space, exec, wofi --show run" + "$mod, Space, exec, wofi --show drun" + "$mod, Shift+Space, exec, wofi --show run" "$mod, O, exec, openproject" "$mod, V, exec, openproject -e nvim" "$mod, B, exec, bluemenu" + "$mod, P, pseudo" "$mod+Alt, S, exec, loadconfig" @@ -163,7 +165,7 @@ animate_manual_resizes = true; }; - windowrulev2 = [ + windowrule = [ "pin,class:^(Hyprland::WinClass::Floating)$" "float,class:^(Hyprland::WinClass::Floating)$" "center,class:^(Hyprland::WinClass::Floating)$" @@ -180,6 +182,10 @@ "pin, title: KDE Connect Daemon" "move 0 0, title: KDE Connect Daemon" "size 1920 1080, title: KDE Connect Daemon" + + # Waydroid + "float, size 500 900, class:^(waydroid\\..*)$" + "float, size 500 900, class:^(Waydroid)$" ]; ecosystem = { diff --git a/common/home/services/nextcloud-client/default.nix b/common/home/services/nextcloud-client/default.nix new file mode 100644 index 0000000..b5234ab --- /dev/null +++ b/common/home/services/nextcloud-client/default.nix @@ -0,0 +1,4 @@ +{ ... }: { + enable = true; + startInBackground = true; +} |