diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-08-31 22:40:55 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-08-31 22:50:20 +0530 |
commit | 4dfa314b6264eaa9e8adf4501e4b3cab4567e2e5 (patch) | |
tree | e856565e0ff501bb864fea7ffb9f0164c9c21aa3 | |
parent | fde6c893f0b15bef713450e533f7cadc8e1a2c1e (diff) |
flake/home-manager: set useUserPackages to false
this breaks wayland screen recording, more investigation needed,
hardcoded ~/.nix-profile/bin maybe ?. the "bug" was introduced in
92248682cb855a6a5d898ec6fdd6fcfcf3c0758c. possibly this also broke
other things.
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ in { home-manager = { useGlobalPkgs = true; - useUserPackages = true; + useUserPackages = false; users.${username} = { ... }: { imports = makeHomeImports host; }; |