From fc55ab35ff3347fcb1b1823efad809d043ff0053 Mon Sep 17 00:00:00 2001 From: Anish Lakhwara Date: Mon, 16 Mar 2026 20:36:32 -0700 Subject: [PATCH] also obsidian --- home/profiles/desktop/default.nix | 52 ++++++++++++++++++------------- 1 file changed, 31 insertions(+), 21 deletions(-) diff --git a/home/profiles/desktop/default.nix b/home/profiles/desktop/default.nix index 89d8ee1..cee3d1b 100644 --- a/home/profiles/desktop/default.nix +++ b/home/profiles/desktop/default.nix @@ -1,4 +1,9 @@ -{ pkgs, config, lib, ... }: +{ + pkgs, + config, + lib, + ... +}: let dracula-gtk = pkgs.fetchFromGitHub { owner = "dracula"; @@ -8,6 +13,8 @@ let }; in { + imports = [ ../obsidian ]; + home.pointerCursor = { x11.enable = true; x11.defaultCursor = "left_ptr"; @@ -33,7 +40,7 @@ in termpdfpy # libsForQt5.kontact thunderbird - libsecret # For secret-tool to manage keyring + libsecret # For secret-tool to manage keyring blender ]; @@ -48,8 +55,10 @@ in xdg.enable = true; # This doesn't seem to do anything so we have below xdg.configHome = "/home/anish/.config"; # TODO bad hardcode xdg.configFile = { - "Kvantum/Dracula/Dracula.kvconfig".source = "${dracula-gtk}/kde/kvantum/Dracula-purple-solid/Dracula-purple-solid.kvconfig"; - "Kvantum/Dracula/Dracula.svg".source = "${dracula-gtk}/kde/kvantum/Dracula-purple-solid/Dracula-purple-solid.svg"; + "Kvantum/Dracula/Dracula.kvconfig".source = + "${dracula-gtk}/kde/kvantum/Dracula-purple-solid/Dracula-purple-solid.kvconfig"; + "Kvantum/Dracula/Dracula.svg".source = + "${dracula-gtk}/kde/kvantum/Dracula-purple-solid/Dracula-purple-solid.svg"; "Kvantum/kvantum.kvconfig".text = "[General]\ntheme=Dracula"; }; xdg.mimeApps.defaultApplications = { @@ -122,11 +131,12 @@ in }; }; - qt = { enable = true; platformTheme.name = "gtk"; - style = { name = "qt5ct-style"; }; + style = { + name = "qt5ct-style"; + }; }; # set up env @@ -139,25 +149,25 @@ in # Black "*.color0" = "#1F2430"; "*.color8" = "#F28779"; - # Red + # Red "*.color1" = "#A6CC70"; "*.color9" = "#FFCC66"; - # Green + # Green "*.color2" = "#5CCFE6"; "*.color10" = "#F29E74"; # Yellow "*.color3" = "#77A8D9"; "*.color11" = "#5C6773"; - # Blue + # Blue "*.color4" = "#707A8C"; "*.color12" = "#F27983"; - # Magenta + # Magenta "*.color5" = "#BAE67E"; "*.color13" = "#FFD580"; - # Cyan + # Cyan "*.color6" = "#73D0FF"; "*.color14" = "#FFA759"; - # White + # White "*.color7" = "#95E6CB"; "*.color15" = "#CBCCC6"; # Bold, Italic, Underline @@ -178,15 +188,15 @@ in # shadow = true; # shadowOffsets = [ (-10) (-10) ]; # shadowOpacity = "0.22"; - # # activeOpacity = "1.00"; - # # inactiveOpacity = "0.92"; - # extraOptions = '' - # shadow-radius = 12; - # # blur-background = true; - # # blur-background-frame = true; - # # blur-background-fixed = true; - # blur-kern = "7x7box"; - # blur-strength = 320; + # # activeOpacity = "1.00"; + # # inactiveOpacity = "0.92"; + # extraOptions = '' + # shadow-radius = 12; + # # blur-background = true; + # # blur-background-frame = true; + # # blur-background-fixed = true; + # blur-kern = "7x7box"; + # blur-strength = 320; # corner-radius = 3 # ''; # }; -- 2.51.2