1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-01 16:53:54 +00:00
ultima/jetpure/default.nix
2024-11-27 19:37:54 +09:00

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; }