Update
This commit is contained in:
parent
d610304eeb
commit
0803bffd2f
5 changed files with 181 additions and 64 deletions
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
25
homes/x86_64-linux/kylekrein/niri/theme.nix
Normal file
25
homes/x86_64-linux/kylekrein/niri/theme.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue