mirror of
https://codeberg.org/mtxyz/nixconf.git
synced 2024-11-09 10:01:57 +00:00
10 lines
241 B
Nix
10 lines
241 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 = "nixconf";
|
|
|
|
outputs = inputs: inputs.nixconf;
|
|
}
|