feat(nix): Zen programs. module

This commit is contained in:
Ahmad Ansori Palembani 2024-11-13 08:42:48 +07:00
parent 4141a527e0
commit a17032a2b2
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
4 changed files with 97 additions and 12 deletions

View file

@ -3,6 +3,10 @@
let
mkSystem = import ../lib/mkSystem.nix;
mkBrew = import ../overlays/darwin/brew.nix;
defaultModules = [
../modules/home-manager/__programs/zen.nix
];
in
{
# Host list
@ -38,10 +42,11 @@ in
home-manager.lib.homeManagerConfiguration {
pkgs = pkgs-unstable; # FIXME: switch to stable when 24.11 become stable
extraSpecialArgs = { inherit inputs pkgs pkgs-unstable home-manager vars; };
modules = [
modules = defaultModules ++ [
./ziro
./ziro/darwin.nix
../modules/home-manager/floorp.nix
../modules/home-manager/zen.nix
];
};
@ -59,10 +64,11 @@ in
home-manager.lib.homeManagerConfiguration {
pkgs = pkgs-unstable; # FIXME: switch to stable when 24.11 become stable
extraSpecialArgs = { inherit inputs pkgs pkgs-unstable home-manager vars; };
modules = [
modules = defaultModules ++ [
./ziro
./ziro/linux.nix
../modules/home-manager/floorp.nix
../modules/home-manager/zen.nix
];
};
}