summaryrefslogtreecommitdiff
path: root/common/home
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2024-09-19 21:46:33 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2024-09-19 21:46:33 +0200
commitc6c19eb070196aad30c973c9fc59cb273714bab0 (patch)
treebb217fc6bf46af719e596c32e12be8fefbeb60f9 /common/home
parent9d4d6f9a7a0002e38b0b5490391afbe0718870d5 (diff)
add xdg dirs and set screenr res for ws
Diffstat (limited to 'common/home')
-rw-r--r--common/home/default.nix27
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";
};