summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-08-31 22:40:55 +0530
committersinanmohd <sinan@sinanmohd.com>2024-08-31 22:50:20 +0530
commit4dfa314b6264eaa9e8adf4501e4b3cab4567e2e5 (patch)
treee856565e0ff501bb864fea7ffb9f0164c9c21aa3
parentfde6c893f0b15bef713450e533f7cadc8e1a2c1e (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.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index d29e372..2fe5249 100644
--- a/flake.nix
+++ b/flake.nix
@@ -48,7 +48,7 @@
in {
home-manager = {
useGlobalPkgs = true;
- useUserPackages = true;
+ useUserPackages = false;
users.${username} = { ... }: {
imports = makeHomeImports host;
};