diff options
| author | caley <u65487754@gmail.com> | 2026-06-16 18:56:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-16 18:56:44 +0200 |
| commit | 7f8c166d3e7c7b63bcc9e2ce601bdb55be1fa9f0 (patch) | |
| tree | cf0a9311b4b751aaf396c4158d5e8c1971c24182 /nixos/hosts/box | |
| parent | 252b27ddd3019045fc2e25cbe5e5c2da9ee7fa93 (diff) | |
Update box.nix
Diffstat (limited to 'nixos/hosts/box')
| -rw-r--r-- | nixos/hosts/box/box.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/nixos/hosts/box/box.nix b/nixos/hosts/box/box.nix index 9365c4f..f47d55b 100644 --- a/nixos/hosts/box/box.nix +++ b/nixos/hosts/box/box.nix @@ -164,6 +164,7 @@ XCURSOR_THEME = "breeze_cursors"; XCURSOR_SIZE = "16"; QT_CURSOR_SIZE = "16"; + QT_QPA_PLATFORMTHEME = "kde"; }; gtk = { @@ -172,6 +173,26 @@ font = { name = "MonaspiceNe Nerd Font Mono"; size = 11; }; }; + qt = { + enable = true; + platformTheme.name = "kde"; + style.name = "breeze"; + }; + + xdg.configFile = { + "dolphinrc".text = '' + [General] + ShowPreview=true + ViewMode=1 + + [MainWindow] + MenuBar=Disabled + ToolBarsMovable=Disabled + ''; + + "kdeglobals".source = "${pkgs.kdePackages.breeze}/share/color-schemes/BreezeDark.colors"; + }; + home.packages = [ (pkgs.writeShellScriptBin "cls" '' [ -z "$1" ] && echo "usage: cls <image>" >&2 && exit 1 |
