Compare commits

...

5 commits

Author SHA1 Message Date
8951234504
fix(home/bundles): Properly set priority on mac
Force disable journalctl & systemctl
2025-03-22 15:45:32 -07:00
9bf7370584
fix(home/appearance): Don't install icon theme on mac 2025-03-22 15:44:35 -07:00
d1f0a93fa7
fix(home/appearance): Import global stylix BEFORE overrides 2025-03-22 15:44:21 -07:00
cbc6ea3ebf
fix(home/bundles): Actually enable stylix on mac 2025-03-22 15:43:45 -07:00
53c4c7c191
fix(home/bundles): Properly set priority on mac
Nix was complaining that ncmpcpp.enable had conflicting values, so force
disasbled it on mac.
2025-03-22 15:13:09 -07:00
2 changed files with 11 additions and 9 deletions

View file

@ -26,7 +26,8 @@ in {
};
stylix =
{
(import "${inputs.self}/stylix.nix" {inherit pkgs;})
// {
iconTheme = {
package = pkgs.kora-icon-theme;
dark = "kora";
@ -34,11 +35,10 @@ in {
};
fonts.sizes.terminal = lib.mkIf (is-darwin system) 14;
}
// import "${inputs.self}/stylix.nix" {inherit pkgs;};
};
home.packages = with pkgs; [
home.packages = lib.mkIf (!(is-darwin system)) (with pkgs; [
kora-icon-theme
];
]);
};
}

View file

@ -13,14 +13,16 @@ in {
marleyos = {
isDesktop = true;
appearance.base = enabled;
programs = {
cli = enabled;
journalctl = disabled;
systemctl = disabled;
journalctl = lib.mkForce disabled;
systemctl = lib.mkForce disabled;
tui = enabled;
cava = disabled;
ncmpcpp = disabled;
cava = lib.mkForce disabled;
ncmpcpp = lib.mkForce disabled;
wezterm = enabled;
};