My nix-darwin and NixOS config
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: update Plasma to align closer with macOS

+28 -7
+2 -1
home/programs/kde.nix
··· 18 18 profiles = { 19 19 "Catppuccin Mocha" = { 20 20 name = "Catppuccin Mocha"; 21 - colorScheme = "CatppuccinMochaMocha"; 21 + # Name= field from the .colorscheme file installed by catppuccin/konsole 22 + colorScheme = "Catppuccin Mocha"; 22 23 font = { 23 24 name = cfg.desktop.monoFontConsole; 24 25 size = 11;
+26 -6
settings/plasma/default.nix
··· 63 63 }; 64 64 }; 65 65 66 + # ── Colour scheme and desktop theme ───────────────────────────────────────── 67 + # mac: NSGlobalDomain.AppleInterfaceStyle = "Dark" 68 + # CustomUserPreferences.NSGlobalDomain.AppleAccentColor = 3 (Green) 69 + # workspace.colorScheme sets the Qt/KDE colour palette (kdeglobals). 70 + # The catppuccin home-manager module also sets this via lib.mkDefault; 71 + # being explicit here ensures it is always set, even if that module changes. 72 + workspace.colorScheme = "CatppuccinMochaGreen"; 73 + 74 + # Plasma desktop style (plasmarc Theme.name) — controls panel/widget chrome. 75 + # No catppuccin plasma *style* package exists; Breeze Dark is the best base. 76 + workspace.theme = "breeze-dark"; 77 + 66 78 # ── Window decoration ────────────────────────────────────────────────────── 67 79 workspace.windowDecorations = { 68 80 theme = "Breeze"; ··· 242 254 }; 243 255 244 256 # ── Dolphin (file manager) ──────────────────────────────────────────────── 245 - # mirrors: finder.AppleShowAllExtensions = true 246 - # finder._FXSortFoldersFirst = true 247 - # finder.ShowPathbar = true 248 - # finder.FXDefaultSearchScope = "SCcf" (search current folder) 257 + # mirrors: finder.AppleShowAllExtensions = true 258 + # finder._FXSortFoldersFirst = true 259 + # finder.ShowPathbar = true 260 + # finder.ShowStatusBar = false 261 + # finder._FXShowPosixPathInTitle = true 262 + # finder.FXDefaultSearchScope = "SCcf" (search current folder) 249 263 configFile."dolphinrc".General = { 250 - ShowHiddenFiles = true; 251 - SortFoldersFirst = true; # mac: finder._FXSortFoldersFirst = true 264 + ShowHiddenFiles = true; 265 + SortFoldersFirst = true; # mac: finder._FXSortFoldersFirst = true 266 + ShowStatusBar = false; # mac: finder.ShowStatusBar = false 267 + BreadcrumbNavigation = true; # mac: finder.ShowPathbar = true 252 268 }; 253 269 configFile."dolphinrc".DetailsMode.ExpandableFolders = false; 270 + 271 + # Display full posix path in the Dolphin title bar 272 + # mac: finder._FXShowPosixPathInTitle = true 273 + configFile."dolphinrc"."KFileDialog Settings"."Show Full Path" = true; 254 274 255 275 # ── Spectacle (screenshot) ──────────────────────────────────────────────── 256 276 # mac: screencapture.location = "~/Desktop" screencapture.type = "png"