diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-19 21:46:33 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-19 21:46:33 +0200 |
| commit | c6c19eb070196aad30c973c9fc59cb273714bab0 (patch) | |
| tree | bb217fc6bf46af719e596c32e12be8fefbeb60f9 /common | |
| parent | 9d4d6f9a7a0002e38b0b5490391afbe0718870d5 (diff) | |
add xdg dirs and set screenr res for ws
Diffstat (limited to 'common')
| -rw-r--r-- | common/home/default.nix | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/common/home/default.nix b/common/home/default.nix index 5b32a0f..306d2a9 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -90,8 +90,8 @@ in }; iconTheme = { - package = pkgs.gnome.adwaita-icon-theme; - name = "adwaita-icon-theme"; + package = pkgs.flat-remix-icon-theme; + name = "Flat-Remix-Blue-Light"; }; font = { @@ -100,6 +100,29 @@ in }; }; + qt = { + enable = true; + style = { + package = [ + pkgs.qt6Packages.qt6gtk2 + pkgs.libsForQt5.qtstyleplugins + ]; + name = "gtk2"; + }; + }; + + xdg.userDirs = { + enable = true; + download = "${config.home-manager.users.n8.home.homeDirectory}"; + desktop = null; + documents = "${config.home-manager.users.n8.home.homeDirectory}/global/docs"; + music = "${config.home-manager.users.n8.home.homeDirectory}/global/media/audio"; + pictures = "${config.home-manager.users.n8.home.homeDirectory}/global/media/photos"; + publicShare = null; + templates = null; + videos = "${config.home-manager.users.n8.home.homeDirectory}/global/media/videos"; + }; + home.stateVersion = "24.05"; }; |