mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
134 lines
No EOL
3.2 KiB
Nix
134 lines
No EOL
3.2 KiB
Nix
{
|
||
name,
|
||
config,
|
||
tree,
|
||
std,
|
||
lib,
|
||
pkgs,
|
||
inputs,
|
||
...
|
||
}: let
|
||
inherit (lib.modules) mkIf mkOptionDefault;
|
||
inherit (lib.trivial) mapNullable;
|
||
inherit (std) string;
|
||
in {
|
||
options = let
|
||
inherit (lib.types) str listOf attrs unspecified enum;
|
||
inherit (lib.options) mkOption;
|
||
in {
|
||
name = mkOption {
|
||
type = str;
|
||
default = name;
|
||
readOnly = true;
|
||
};
|
||
arch = mkOption {
|
||
description = "Processor architecture of the host";
|
||
type = str;
|
||
default = "x86_64";
|
||
};
|
||
type = mkOption {
|
||
description = "Operating system type of the host";
|
||
type = enum ["NixOS" "MacOS" "Darwin" "Linux" "Windows" "Home"];
|
||
default = "NixOS";
|
||
};
|
||
folder = mkOption {
|
||
type = str;
|
||
internal = true;
|
||
};
|
||
system = mkOption {
|
||
type = str;
|
||
internal = true;
|
||
};
|
||
modules = mkOption {
|
||
type = listOf unspecified;
|
||
default = [];
|
||
};
|
||
specialArgs = mkOption {
|
||
type = attrs;
|
||
internal = true;
|
||
};
|
||
builder = mkOption {
|
||
type = unspecified;
|
||
internal = true;
|
||
};
|
||
built = mkOption {
|
||
type = unspecified;
|
||
internal = true;
|
||
};
|
||
};
|
||
config = {
|
||
system = let
|
||
kernel =
|
||
{
|
||
nixos = "linux";
|
||
macos = "darwin";
|
||
darwin = "darwin";
|
||
linux = "linux";
|
||
home = "linux";
|
||
}
|
||
.${string.toLower config.type};
|
||
in "${config.arch}-${kernel}";
|
||
folder =
|
||
{
|
||
nixos = "nixos";
|
||
macos = "darwin";
|
||
darwin = "darwin";
|
||
linux = "linux";
|
||
windows = "windows";
|
||
home = "home";
|
||
}
|
||
.${string.toLower config.type};
|
||
modules = with tree; mkIf (config.folder != "linux") [
|
||
# per-OS modules
|
||
modules.${config.folder}
|
||
# per-OS configuration
|
||
tree.${config.folder}.common
|
||
# per-OS user definition
|
||
home.user.${config.folder}
|
||
# true base module
|
||
common
|
||
];
|
||
builder =
|
||
{
|
||
nixos = let
|
||
lib = inputs.nixpkgs.lib.extend (self: super:
|
||
import (inputs.arcexprs + "/lib") {
|
||
inherit super;
|
||
lib = self;
|
||
isOverlayLib = true;
|
||
});
|
||
sys = args:
|
||
lib.nixosSystem ({
|
||
inherit lib;
|
||
}
|
||
// args);
|
||
in
|
||
args: let
|
||
nixos = sys args;
|
||
in
|
||
nixos.extendModules {
|
||
modules =
|
||
nixos.config.scalpels
|
||
++ [
|
||
inputs.scalpel.nixosModules.scalpel
|
||
];
|
||
specialArgs = {prev = nixos;};
|
||
};
|
||
home = args: inputs.home-manager.lib.homeManagerConfiguration (args // { inherit pkgs; });
|
||
darwin = inputs.darwin.lib.darwinSystem;
|
||
macos = inputs.darwin.lib.darwinSystem;
|
||
}
|
||
.${string.toLower config.type}
|
||
or null;
|
||
built = mkOptionDefault (mapNullable (builder:
|
||
builder {
|
||
inherit (config) system modules specialArgs;
|
||
})
|
||
config.builder);
|
||
specialArgs = {
|
||
inherit name inputs std tree;
|
||
systemType = config.folder;
|
||
system = config;
|
||
};
|
||
};
|
||
} |