fix: undo stylix fixing
This commit is contained in:
parent
2c803d9685
commit
d41728d9b3
5 changed files with 44 additions and 49 deletions
|
@ -35,7 +35,6 @@
|
|||
|
||||
homes.modules = with inputs; [
|
||||
agenix.homeManagerModules.default
|
||||
stylix.homeManagerModules.stylix
|
||||
niri-flake.homeModules.niri
|
||||
nixcord.homeManagerModules.nixcord
|
||||
];
|
||||
|
|
|
@ -23,17 +23,15 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
stylix =
|
||||
{
|
||||
iconTheme = {
|
||||
package = pkgs.kora-icon-theme;
|
||||
dark = "kora";
|
||||
light = "kora-light-panel";
|
||||
};
|
||||
stylix = {
|
||||
iconTheme = {
|
||||
package = pkgs.kora-icon-theme;
|
||||
dark = "kora";
|
||||
light = "kora-light-panel";
|
||||
};
|
||||
|
||||
fonts.sizes.terminal = lib.mkIf (is-darwin system) 14;
|
||||
}
|
||||
// import "${inputs.self}/stylix.nix" {inherit pkgs;};
|
||||
fonts.sizes.terminal = lib.mkIf (is-darwin system) 14;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
kora-icon-theme
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: let
|
||||
cfg = config.marleyos.appearance.base;
|
||||
|
@ -10,7 +9,42 @@ in {
|
|||
options.marleyos.appearance.base.enable = lib.mkEnableOption "base";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
stylix = import "${inputs.self}/stylix.nix" {inherit pkgs;};
|
||||
stylix = {
|
||||
enable = true;
|
||||
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
|
||||
override = {slug = "rose-pine";};
|
||||
|
||||
image = ./wallpaper.png;
|
||||
|
||||
fonts = {
|
||||
serif = {
|
||||
package = pkgs.eb-garamond;
|
||||
name = "EB Garamond";
|
||||
};
|
||||
sansSerif = {
|
||||
package = pkgs.dm-sans;
|
||||
name = "DeepMind Sans";
|
||||
};
|
||||
monospace = {
|
||||
package = pkgs.maple-mono-NF;
|
||||
name = "Maple Mono";
|
||||
};
|
||||
emoji = {
|
||||
package = pkgs.whatsapp-emoji-font;
|
||||
name = "Apple Color Emoji";
|
||||
};
|
||||
|
||||
sizes = {
|
||||
terminal = 11;
|
||||
};
|
||||
};
|
||||
|
||||
cursor = {
|
||||
package = pkgs.rose-pine-cursor;
|
||||
name = "BreezeX-RosePine-Linux";
|
||||
};
|
||||
};
|
||||
|
||||
fonts = {
|
||||
enableDefaultPackages = true;
|
||||
|
|
Before Width: | Height: | Size: 4.7 MiB After Width: | Height: | Size: 4.7 MiB |
36
stylix.nix
36
stylix.nix
|
@ -1,36 +0,0 @@
|
|||
{pkgs}: {
|
||||
enable = true;
|
||||
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
|
||||
override = {slug = "rose-pine";};
|
||||
|
||||
image = ./wallpaper.png;
|
||||
|
||||
fonts = {
|
||||
serif = {
|
||||
package = pkgs.eb-garamond;
|
||||
name = "EB Garamond";
|
||||
};
|
||||
sansSerif = {
|
||||
package = pkgs.dm-sans;
|
||||
name = "DeepMind Sans";
|
||||
};
|
||||
monospace = {
|
||||
package = pkgs.maple-mono-NF;
|
||||
name = "Maple Mono";
|
||||
};
|
||||
emoji = {
|
||||
package = pkgs.whatsapp-emoji-font;
|
||||
name = "Apple Color Emoji";
|
||||
};
|
||||
|
||||
sizes = {
|
||||
terminal = 11;
|
||||
};
|
||||
};
|
||||
|
||||
cursor = {
|
||||
package = pkgs.rose-pine-cursor;
|
||||
name = "BreezeX-RosePine-Linux";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue