1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2024-12-28 10:33:52 +00:00
ultima/libx/builder.nix
2024-12-22 11:09:51 +09:00

67 lines
1.1 KiB
Nix

{
inputs,
lib,
# VARIABLES
disk ? null,
hostName ? "sus",
userName ? "amogus",
flakeDir ? null,
theme ? "horizon-dark",
is ? null,
# SYSINFO
plfrm ? "x86_64-linux",
ver ? "24.05",
dev,
...
}:
let
# OTHER
inherit (inputs.nixpkgs.lib) nixosSystem;
inherit (inputs.home-manager.lib) homeManagerConfiguration;
pkgs = inputs.nixpkgs.legacyPackages.${plfrm};
# NEEDS
sec = import ./secrets.nix;
x =
import ./options.nix {
inherit
theme
inputs
pkgs
lib
;
}
// {
inherit
disk
hostName
userName
flakeDir
is
plfrm
ver
dev
sec
;
};
# ARGS
args = { inherit x inputs; };
in
{
# CONFIGURATION
nixosConfigurations.${hostName} = nixosSystem {
modules = [
../modules/nixos
../${hostName}/host
];
specialArgs = args;
};
homeConfigurations.${userName} = homeManagerConfiguration {
modules = [
../modules/home
../${hostName}/home
];
extraSpecialArgs = args;
inherit pkgs;
};
}