summaryrefslogtreecommitdiff
path: root/users/common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/common.nix')
-rw-r--r--users/common.nix32
1 files changed, 21 insertions, 11 deletions
diff --git a/users/common.nix b/users/common.nix
index 1af3dad..9896be6 100644
--- a/users/common.nix
+++ b/users/common.nix
@@ -19,6 +19,15 @@ let
cp -r $src/miku-cursor-linux $out/share/icons/miku-cursor
'';
};
+ noc_or_bee =
+ if
+ config.beeMods.matugen.enable
+ && config.beeMods.windowManagers.beeConfig.enable
+ && !config.beeMods.windowManagers.noctalia
+ then
+ "matugen.css"
+ else
+ "noctalia.css";
in
{
programs.git = {
@@ -29,7 +38,7 @@ in
});
settings = {
user = {
- name = "beeb5k (Vivek Tiwari)";
+ name = "beeb5k";
email = "beebeeb5k@gmail.com";
signingkey = "42177A22EA630575";
};
@@ -41,12 +50,12 @@ in
};
home.pointerCursor = {
- size = 36;
+ size = 24;
enable = true;
- x11.enable = true;
+ x11.enable = false;
gtk.enable = true;
- hyprcursor.size = 16;
dotIcons.enable = true;
+ hyprcursor.size = 24;
hyprcursor.enable = true;
name = "Bibata-Modern-Ice";
package = pkgs.bibata-cursors;
@@ -62,19 +71,20 @@ in
};
qt = {
- enable = false;
+ enable = true;
platformTheme.name = "qtct";
};
gtk = {
enable = true;
+ font.name = "IosevkaInput";
theme = {
package = pkgs.adw-gtk3;
name = "adw-gtk3";
};
iconTheme = {
- name = "AdwaitaLegacy";
- package = pkgs.adwaita-icon-theme-legacy;
+ name = "Adwaita";
+ package = pkgs.adwaita-icon-theme;
};
gtk3 = {
bookmarks = [
@@ -83,13 +93,14 @@ in
"file://${config.home.homeDirectory}/Documents"
"file://${config.home.homeDirectory}/Videos"
"file://${config.home.homeDirectory}/Music"
+ "file://${config.home.homeDirectory}/Projects"
];
extraConfig = {
gtk-cursor-blink = false;
gtk-decoration-layout = ":";
};
extraCss = ''
- @import url("matugen.css");
+ @import url("${noc_or_bee}");
'';
};
@@ -100,7 +111,7 @@ in
gtk-decoration-layout = ":";
};
extraCss = ''
- @import url("matugen.css");
+ @import url("${noc_or_bee}");
'';
};
};
@@ -134,8 +145,7 @@ in
home.packages = with pkgs; [
swayimg
imagemagick
- unzip
- pcmanfm
+ nautilus
opencode
];
}