nixos: fix zinputrc on flake-enabled systems
This commit is contained in:
parent
7de613db99
commit
8c5c0d6748
1 changed files with 4 additions and 1 deletions
|
@ -278,7 +278,10 @@ in
|
|||
fi
|
||||
'';
|
||||
|
||||
environment.etc.zinputrc.source = ./zinputrc;
|
||||
# Bug in nix flakes:
|
||||
# If we use `.source` here the path is garbage collected also we point to it with a symlink
|
||||
# see https://github.com/NixOS/nixpkgs/issues/132732
|
||||
environment.etc.zinputrc.text = builtins.readFile ./zinputrc;
|
||||
|
||||
environment.systemPackages =
|
||||
let
|
||||
|
|
Loading…
Reference in a new issue