refactor: migrate nix-darwin config to a flake-parts dendritic layout

This commit is contained in:
Poby 2026-03-26 09:03:35 +09:00
parent f80b0b0d4f
commit 09801ac429
No known key found for this signature in database
84 changed files with 1029 additions and 687 deletions

View file

@ -0,0 +1,70 @@
{
config,
inputs,
lib,
...
}: let
userName = config.repo.user.name;
mkDarwinConfiguration = hostName: hostConfig: let
hostContext = {
name = hostName;
system = hostConfig.system;
features = hostConfig.features;
};
darwinModules = builtins.map (feature: config.flake.modules.darwin.${feature} or {}) hostConfig.features;
homeModules = builtins.map (feature: config.repo.homeModules.${feature} or {}) hostConfig.features;
in
inputs.darwin.lib.darwinSystem {
system = hostConfig.system;
modules =
[
./darwin-context.nix
{
repo = {
user = config.repo.user;
host = hostContext;
};
}
]
++ darwinModules
++ [
inputs.nix-homebrew.darwinModules.nix-homebrew
inputs.home-manager.darwinModules.home-manager
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
backupFileExtension = "backup";
sharedModules = [
inputs.nvf.homeManagerModules.nvf
inputs.sops-nix.homeManagerModules.sops
./home-context.nix
];
users.${userName}.imports =
[
{
repo = {
user = {
inherit
(config.repo.user)
name
email
homeDirectory
homeStateVersion
secretFile
;
};
host = hostContext;
};
}
]
++ homeModules;
};
}
];
};
in {
flake.darwinConfigurations = lib.mapAttrs mkDarwinConfiguration config.repo.hosts;
}

View file

@ -0,0 +1,39 @@
{lib, ...}: let
inherit (lib) mkOption;
types = lib.types;
in {
options.repo = {
user = {
name = mkOption {
type = types.str;
};
email = mkOption {
type = types.str;
};
homeDirectory = mkOption {
type = types.str;
};
homeStateVersion = mkOption {
type = types.str;
};
darwinStateVersion = mkOption {
type = types.int;
};
secretFile = mkOption {
type = types.path;
};
};
host = {
name = mkOption {
type = types.str;
};
system = mkOption {
type = types.str;
};
features = mkOption {
type = types.listOf types.str;
};
};
};
}

View file

@ -0,0 +1,6 @@
{...}: {
imports = [
./options.nix
./darwin-configurations.nix
];
}

View file

@ -0,0 +1,36 @@
{lib, ...}: let
inherit (lib) mkOption;
types = lib.types;
in {
options.repo = {
user = {
name = mkOption {
type = types.str;
};
email = mkOption {
type = types.str;
};
homeDirectory = mkOption {
type = types.str;
};
homeStateVersion = mkOption {
type = types.str;
};
secretFile = mkOption {
type = types.path;
};
};
host = {
name = mkOption {
type = types.str;
};
system = mkOption {
type = types.str;
};
features = mkOption {
type = types.listOf types.str;
};
};
};
}

60
modules/flake/options.nix Normal file
View file

@ -0,0 +1,60 @@
{
config,
lib,
...
}: let
inherit (lib) mkDefault mkOption;
types = lib.types;
in {
options.repo = {
user = {
name = mkOption {
type = types.str;
};
email = mkOption {
type = types.str;
};
homeDirectory = mkOption {
type = types.str;
};
homeStateVersion = mkOption {
type = types.str;
};
darwinStateVersion = mkOption {
type = types.int;
};
secretFile = mkOption {
type = types.path;
};
};
hosts = mkOption {
type = types.attrsOf (types.submodule {
options = {
system = mkOption {
type = types.str;
};
features = mkOption {
type = types.listOf types.str;
default = [];
};
};
});
default = {};
};
homeModules = mkOption {
type = types.lazyAttrsOf types.deferredModule;
default = {};
};
};
config.repo.user = {
name = mkDefault "poby";
email = mkDefault "smg981024@gmail.com";
homeDirectory = mkDefault "/Users/${config.repo.user.name}";
homeStateVersion = mkDefault "25.11";
darwinStateVersion = mkDefault 6;
secretFile = mkDefault ../../secrets/poby.yaml;
};
}