snowfall migration wip homepc done
This commit is contained in:
parent
ed08a98651
commit
25774148e4
37 changed files with 1943 additions and 1447 deletions
19
overlays/nix-schemas/default.nix
Normal file
19
overlays/nix-schemas/default.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
# Channels are named after NixPkgs instances in your flake inputs. For example,
|
||||
# with the input `nixpkgs` there will be a channel available at `channels.nixpkgs`.
|
||||
# These channels are system-specific instances of NixPkgs that can be used to quickly
|
||||
# pull packages into your overlay.
|
||||
channels,
|
||||
inputs,
|
||||
...
|
||||
}: final: prev: {
|
||||
nix-schemas = inputs.nix-schemas.packages.${prev.system}.nix.overrideAttrs (old: {
|
||||
doCheck = false;
|
||||
doInstallCheck = false;
|
||||
postInstall =
|
||||
old.postInstall or ""
|
||||
+ ''
|
||||
mv $out/bin/nix $out/bin/nix-schemas
|
||||
'';
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue