fix: Finally fix homeManager/darwin outputs
I forgot to add new modules to darwin/homeManager outputs oops
This commit is contained in:
parent
89f2253d8b
commit
83de2f8264
5 changed files with 57 additions and 47 deletions
11
flake.nix
11
flake.nix
|
@ -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 = {
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
config,
|
||||
pkgs,
|
||||
system,
|
||||
inputs,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.snowfall.system) is-darwin;
|
||||
|
@ -22,7 +23,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
stylix = {
|
||||
stylix =
|
||||
{
|
||||
iconTheme = {
|
||||
package = pkgs.kora-icon-theme;
|
||||
dark = "kora";
|
||||
|
@ -30,7 +32,8 @@ in {
|
|||
};
|
||||
|
||||
fonts.sizes.terminal = lib.mkIf (is-darwin system) 14;
|
||||
};
|
||||
}
|
||||
// import "${inputs.self}/stylix.nix" {inherit pkgs;};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
kora-icon-theme
|
||||
|
|
|
@ -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
36
stylix.nix
Normal 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";
|
||||
};
|
||||
}
|
Before Width: | Height: | Size: 4.7 MiB After Width: | Height: | Size: 4.7 MiB |
Loading…
Reference in a new issue