Catpuccin exluded for x86_64_darwin

This commit is contained in:
kolkman
2026-09-15 18:15:47 +02:00
parent e782f238ed
commit c0392c8366
3 changed files with 11 additions and 5 deletions
+5 -4
View File
@@ -153,7 +153,7 @@
system: system:
darwin.lib.darwinSystem { darwin.lib.darwinSystem {
inherit system; inherit system;
specialArgs = inputs; specialArgs = inputs // { inherit system; };
modules = [ modules = [
home-manager.darwinModules.home-manager home-manager.darwinModules.home-manager
nix-homebrew.darwinModules.nix-homebrew nix-homebrew.darwinModules.nix-homebrew
@@ -169,9 +169,10 @@
autoMigrate = true; autoMigrate = true;
}; };
home-manager.sharedModules = [ home-manager.sharedModules =
catppuccin.homeModules.catppuccin nixpkgs.lib.optionals (system != "x86_64-darwin") [
]; catppuccin.homeModules.catppuccin
];
} }
./hosts/darwin ./hosts/darwin
+1 -1
View File
@@ -1,7 +1,7 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
let let
emacsOverlaySha256 = "09wf4ww2irx9lxq6symh5cjai1xjgf4jxikr24z22r2i0cjg5f9g"; emacsOverlaySha256 = "1abfqnjs3ysmg8k41hwncwzphkcw9884sskmfp2kj24cd9j7kpsz";
in in
{ {
home-manager.backupFileExtension = "nix-backup"; home-manager.backupFileExtension = "nix-backup";
+5
View File
@@ -4,6 +4,7 @@
lib, lib,
home-manager, home-manager,
llm-agents, llm-agents,
system,
... ...
}: }:
@@ -98,11 +99,15 @@ in
}; };
stateVersion = "23.11"; stateVersion = "23.11";
}; };
}
// lib.optionalAttrs (system != "x86_64-darwin") {
catppuccin = { catppuccin = {
autoEnable = true; autoEnable = true;
enable = true; enable = true;
flavor = "mocha"; flavor = "mocha";
}; };
}
// {
programs = { programs = {
alacritty = { alacritty = {
enable = true; enable = true;