Working on reshuffling

This commit is contained in:
2026-03-19 06:40:00 +00:00
parent b10e44b294
commit 37d2d75bb1
33 changed files with 0 additions and 1371 deletions
@@ -1,59 +0,0 @@
{ flakeRoot, config, lib, pkgs, ... }:
let
cfg = config.mySystem.desktop.stylix;
in {
options.mySystem.desktop.stylix.enable =
lib.mkEnableOption "Stylix System Theming";
config = lib.mkIf cfg.enable {
mySystem = {
apps.wallpaper = {
enable = true;
packages = [ "feh" "st" ]; # just symbolic names
};
};
stylix = {
enable = true;
base16Scheme = "${flakeRoot}/assets/system/theming/stylix/catppuccin-mocha.yaml";
image = "${flakeRoot}/assets/hyprland/wallpaperstuff/pictures/wall1.jpg";
polarity = "dark";
cursor = {
package = pkgs.phinger-cursors;
name = "phinger-cursors-light";
size = 24;
};
fonts = {
monospace = {
package = pkgs.nerd-fonts.fira-code;
name = "Fira Code Nerd Font";
};
sansSerif = {
package = pkgs.lato;
name = "Lato";
};
};
icons = {
enable = true;
package = pkgs.papirus-icon-theme;
dark = "Papirus-Dark";
light = "Papirus-Light";
};
};
home-manager.users.henrov.home.sessionVariables = {
XCURSOR_THEME = config.stylix.cursor.name;
XCURSOR_SIZE = toString config.stylix.cursor.size;
HYPRCURSOR_THEME = config.stylix.cursor.name;
HYPRCURSOR_SIZE = toString config.stylix.cursor.size;
};
};
}