New structure since I kept struggling with the home-manager implemnentation
This commit is contained in:
+51
-16
@@ -499,30 +499,65 @@ This sets the XDG implementation
|
|||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** =generated/modules/system/stylix.nix=
|
** =generated/modules/desktop/stylix.nix=
|
||||||
This sets the stylix implementation
|
This sets the stylix implementation
|
||||||
#+BEGIN_SRC nix :tangle generated/modules/system/stylix.nix :noweb tangle :mkdirp yes :eval never-html
|
#+BEGIN_SRC nix :tangle generated/modules/desktop/stylix.nix :noweb tangle :mkdirp yes :eval never-html
|
||||||
{ config, pkgs, inputs, flakeRoot, ... }:
|
{flakeRoot, ... }:
|
||||||
|
|
||||||
let
|
|
||||||
_ = builtins.trace ("Stylix enable = " + toString config.stylix.enable) null;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
imports = [
|
flake.nixosModules.stylix = { inputs, config, lib, pkgs, ... }:
|
||||||
inputs.stylix.nixosModules.stylix
|
let
|
||||||
];
|
cfg = config.mySystem.desktop.stylix;
|
||||||
|
in {
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
feh # wallpaper target
|
feh # wallpaper target
|
||||||
#gtk3 # GTK target
|
|
||||||
# gtk4 # GTK target
|
|
||||||
st # NVF / terminal target, or kitty
|
st # NVF / terminal target, or kitty
|
||||||
];
|
];
|
||||||
|
|
||||||
stylix = {
|
options.mySystem.desktop.stylix.enable = lib.mkEnableOption "Stylix System Theming";
|
||||||
enable = true;
|
|
||||||
base16Scheme = "${flakeRoot}/assets/system/theming/stylix/catppuccin-mocha.yaml";
|
config = lib.mkIf cfg.enable {
|
||||||
polarity = "dark";
|
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;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|||||||
@@ -0,0 +1,58 @@
|
|||||||
|
{flakeRoot, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
flake.nixosModules.stylix = { inputs, config, lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.mySystem.desktop.stylix;
|
||||||
|
in {
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
feh # wallpaper target
|
||||||
|
st # NVF / terminal target, or kitty
|
||||||
|
];
|
||||||
|
|
||||||
|
options.mySystem.desktop.stylix.enable = lib.mkEnableOption "Stylix System Theming";
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user