fix: Finally fix homeManager/darwin outputs

I forgot to add new modules to darwin/homeManager outputs oops
This commit is contained in:
punkfairie 2025-03-20 19:08:56 -07:00
parent 89f2253d8b
commit 83de2f8264
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
5 changed files with 57 additions and 47 deletions

View file

@ -34,6 +34,9 @@
];
homes.modules = with inputs; [
agenix.homeManagerModules.default
stylix.homeManagerModules.stylix
niri-flake.homeModules.niri
nixcord.homeManagerModules.nixcord
];
@ -73,9 +76,11 @@
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.darwin.follows = "darwin";
inputs.home-manager.follows = "home-manager";
inputs = {
nixpkgs.follows = "nixpkgs";
darwin.follows = "darwin";
home-manager.follows = "home-manager";
};
};
nixgl = {

View file

@ -3,6 +3,7 @@
config,
pkgs,
system,
inputs,
...
}: let
inherit (lib.snowfall.system) is-darwin;
@ -22,15 +23,17 @@ 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;
};
fonts.sizes.terminal = lib.mkIf (is-darwin system) 14;
}
// import "${inputs.self}/stylix.nix" {inherit pkgs;};
home.packages = with pkgs; [
kora-icon-theme

View file

@ -2,6 +2,7 @@
lib,
config,
pkgs,
inputs,
...
}: let
cfg = config.marleyos.appearance.base;
@ -9,42 +10,7 @@ in {
options.marleyos.appearance.base.enable = lib.mkEnableOption "base";
config = lib.mkIf cfg.enable {
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";
};
};
stylix = import "${inputs.self}/stylix.nix" {inherit pkgs;};
fonts = {
enableDefaultPackages = true;

36
stylix.nix Normal file
View file

@ -0,0 +1,36 @@
{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";
};
}

View file

Before

Width:  |  Height:  |  Size: 4.7 MiB

After

Width:  |  Height:  |  Size: 4.7 MiB