mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-01 16:53:54 +00:00
14 lines
294 B
Nix
14 lines
294 B
Nix
{ self, inputs, ... }:
|
|
let
|
|
builder = import ../libx/builder.nix {
|
|
inherit self inputs userName hostName flakeDir wm;
|
|
};
|
|
hostName = "jetpure";
|
|
userName = "nixzoid";
|
|
flakeDir = "/persist/flake";
|
|
wm = {
|
|
sh = "Hyprland";
|
|
bar = "hyprland";
|
|
};
|
|
in { flake = builder.flake; }
|