mirror of
https://codeberg.org/geekygays/nixconf.git
synced 2024-11-04 23:57:12 +00:00
11 lines
281 B
Nix
11 lines
281 B
Nix
|
# Place this shim into /etc/nixos/flake.nix
|
||
|
#
|
||
|
# That way nixos-rebuild will use the upstream repo by default,
|
||
|
# without needing to clone it into /etc/nixos as root.
|
||
|
|
||
|
{
|
||
|
inputs.nixconf.url = "git+https://codeberg.org/geekygays/srv-nixconf";
|
||
|
|
||
|
outputs = inputs: inputs.nixconf;
|
||
|
}
|