This commit is contained in:
Aleksandr Lebedev 2025-09-14 23:39:27 +02:00
parent d610304eeb
commit 0803bffd2f
5 changed files with 181 additions and 64 deletions

View file

@ -28,12 +28,8 @@
jq
kdePackages.gwenview
kdePackages.ark
inputs.rose-pine-hyprcursor.packages.${pkgs.system}.default
];
home.sessionVariables = {
GTK_THEME = "Colloid";
};
qt.enable = true;
qt.style.name = "gtk3";
xdg.configFile."quickshell".source = "${
inputs.desktopShell.packages.${pkgs.system}.dankMaterialShell
}/etc/xdg/quickshell";

View file

@ -27,7 +27,6 @@ in
glib
khal # calendar
gammastep # night mode
colloid-gtk-theme
qt6ct
grim
slurp
@ -51,10 +50,10 @@ in
".local/share/color-schemes/DankMatugen.colors"
];
directories = [
".config/qt5ct"
".config/qt6ct"
".config/gtk-3.0"
".config/gtk-4.0"
#".config/qt5ct"
#".config/qt6ct"
#".config/gtk-3.0"
#".config/gtk-4.0"
];
};
};

View file

@ -0,0 +1,25 @@
{
osConfig,
config,
pkgs,
lib,
inputs,
namespace,
...
}:
with lib.custom; let
username = config.snowfallorg.user.name;
home = config.snowfallorg.user.home.directory;
impermanence = config.${namespace}.impermanence;
in
lib.mkIf osConfig.custom.windowManagers.niri.enable {
home.packages = with pkgs; [
nordic
];
programs.niri = {
settings = {
cursor.theme = "Nordic-cursors";
};
};
}