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:
darwin.lib.darwinSystem {
inherit system;
specialArgs = inputs;
specialArgs = inputs // { inherit system; };
modules = [
home-manager.darwinModules.home-manager
nix-homebrew.darwinModules.nix-homebrew
@@ -169,9 +169,10 @@
autoMigrate = true;
};
home-manager.sharedModules = [
catppuccin.homeModules.catppuccin
];
home-manager.sharedModules =
nixpkgs.lib.optionals (system != "x86_64-darwin") [
catppuccin.homeModules.catppuccin
];
}
./hosts/darwin
+1 -1
View File
@@ -1,7 +1,7 @@
{ config, pkgs, ... }:
let
emacsOverlaySha256 = "09wf4ww2irx9lxq6symh5cjai1xjgf4jxikr24z22r2i0cjg5f9g";
emacsOverlaySha256 = "1abfqnjs3ysmg8k41hwncwzphkcw9884sskmfp2kj24cd9j7kpsz";
in
{
home-manager.backupFileExtension = "nix-backup";
+5
View File
@@ -4,6 +4,7 @@
lib,
home-manager,
llm-agents,
system,
...
}:
@@ -98,11 +99,15 @@ in
};
stateVersion = "23.11";
};
}
// lib.optionalAttrs (system != "x86_64-darwin") {
catppuccin = {
autoEnable = true;
enable = true;
flavor = "mocha";
};
}
// {
programs = {
alacritty = {
enable = true;