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; [
|
homes.modules = with inputs; [
|
||||||
|
agenix.homeManagerModules.default
|
||||||
|
stylix.homeManagerModules.stylix
|
||||||
|
niri-flake.homeModules.niri
|
||||||
nixcord.homeManagerModules.nixcord
|
nixcord.homeManagerModules.nixcord
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -73,9 +76,11 @@
|
||||||
|
|
||||||
agenix = {
|
agenix = {
|
||||||
url = "github:ryantm/agenix";
|
url = "github:ryantm/agenix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs = {
|
||||||
inputs.darwin.follows = "darwin";
|
nixpkgs.follows = "nixpkgs";
|
||||||
inputs.home-manager.follows = "home-manager";
|
darwin.follows = "darwin";
|
||||||
|
home-manager.follows = "home-manager";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nixgl = {
|
nixgl = {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
system,
|
system,
|
||||||
|
inputs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib.snowfall.system) is-darwin;
|
inherit (lib.snowfall.system) is-darwin;
|
||||||
|
@ -22,7 +23,8 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
stylix = {
|
stylix =
|
||||||
|
{
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
package = pkgs.kora-icon-theme;
|
package = pkgs.kora-icon-theme;
|
||||||
dark = "kora";
|
dark = "kora";
|
||||||
|
@ -30,7 +32,8 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
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; [
|
home.packages = with pkgs; [
|
||||||
kora-icon-theme
|
kora-icon-theme
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
inputs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
cfg = config.marleyos.appearance.base;
|
cfg = config.marleyos.appearance.base;
|
||||||
|
@ -9,42 +10,7 @@ in {
|
||||||
options.marleyos.appearance.base.enable = lib.mkEnableOption "base";
|
options.marleyos.appearance.base.enable = lib.mkEnableOption "base";
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
stylix = {
|
stylix = import "${inputs.self}/stylix.nix" {inherit 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";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
fonts = {
|
fonts = {
|
||||||
enableDefaultPackages = true;
|
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