mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-01 16:33:55 +00:00
14 lines
294 B
Nix
14 lines
294 B
Nix
{ inputs, lib, ... }:
|
|
let # CONFIGURATION
|
|
builder = import ../libx/builder.nix {
|
|
inherit inputs lib;
|
|
hostName = "jetpure";
|
|
userName = "nixzoid";
|
|
flakeDir = "/persist/flake";
|
|
dev = {
|
|
hdd = "/mnt/HDD";
|
|
ssd = "/mnt/SSD";
|
|
};
|
|
};
|
|
in { flake = builder.flake; }
|