ghostty/nix/vm/create-xfce.nix
Jeffrey C. Ollie 3159a7bec7 nix: add x11 xfce vm
2025-01-15 20:37:31 -06:00

13 lines
178 B
Nix

{
system,
nixpkgs,
overlay,
module,
uid ? 1000,
gid ? 1000,
}:
import ./create.nix {
inherit system nixpkgs overlay module uid gid;
common = ./common-xfce.nix;
}