This commit is contained in:
Ivan Dimitrov 2023-07-13 18:46:26 +03:00
parent e2aafcdaf3
commit ceb75f0fcd
2 changed files with 8 additions and 0 deletions

View File

@ -111,6 +111,7 @@
}; };
sway.enable = true; sway.enable = true;
zsh.enable = true; zsh.enable = true;
nix-ld.enable = true;
}; };
users = { users = {

7
nix-ld.nix Normal file
View File

@ -0,0 +1,7 @@
with import <nixpkgs> {};
mkShell {
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [
stdenv.cc.cc
];
NIX_LD = lib.fileContents "${stdenv.cc}/nix-support/dynamic-linker";
}