797c77a00a
This replaces some derivation outputs by simple strings rather than full Nix store paths. This removes the need to download the whole derivation when all we need is a static string.
20 lines
310 B
Nix
20 lines
310 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.alacritty.enable = true;
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
alacritty = pkgs.writeScriptBin "dummy-alacritty" "";
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/alacritty
|
|
'';
|
|
};
|
|
}
|