1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-04-05 16:43:41 +00:00
home-manager/modules
Luflosi 571e313198
files: don't handle symlinks in a special way when home.file.<name>.recursive is set to true
I'm using `pass` as my password manager.
In order to use it in Firefox, I use the passff extension.
The passff extension needs the `passff-host` native messaging host to access the passwords.
Here is what the file structure of the `passff-host` package looks like:
```
result
├── etc
│   ├── chromium
│   │   └── native-messaging-hosts
│   │       └── passff.json -> ../../../share/passff-host/passff.json
│   ├── opt
│   │   └── chrome
│   │       └── native-messaging-hosts
│   │           └── passff.json -> ../../../../share/passff-host/passff.json
│   └── vivaldi
│       └── native-messaging-hosts
│           └── passff.json -> ../../../share/passff-host/passff.json
├── lib
│   ├── librewolf
│   │   └── native-messaging-hosts
│   │       └── passff.json -> ../../../share/passff-host/passff.json
│   └── mozilla
│       └── native-messaging-hosts
│           └── passff.json -> ../../../share/passff-host/passff.json
└── share
    └── passff-host
        ├── passff.json
        └── passff.py
```
As you can see, `lib/mozilla/native-messaging-hosts/passff.json` is a relative symlink. This is perfectly reasonable.
When adding `programs.firefox.nativeMessagingHosts = [ pkgs.passff-host ]` to the home-manager configuration, the firefox module first joins all the `nativeMessagingHosts` using `symlinkJoin` and stores the result in a variable called `nativeMessagingHostsJoined`.
This creates `ff_native-messaging-hosts` in the Nix store:
```
/nix/store/bv62k5yl7jwzkhyci838ir3vgz59gqsa-ff_native-messaging-hosts
├── bin
│   └── firefox -> /nix/store/0zqxaz44w75gjq32xj53i32jl2j91pzy-firefox-125.0.1/bin/firefox
├── etc
│   ├── chromium
│   │   └── native-messaging-hosts
│   │       └── passff.json -> ../../../share/passff-host/passff.json
│   ├── opt
│   │   └── chrome
│   │       └── native-messaging-hosts
│   │           └── passff.json -> ../../../../share/passff-host/passff.json
│   └── vivaldi
│       └── native-messaging-hosts
│           └── passff.json -> ../../../share/passff-host/passff.json
├── lib
│   ├── [...]
│   ├── librewolf
│   │   └── native-messaging-hosts
│   │       └── passff.json -> ../../../share/passff-host/passff.json
│   └── mozilla
│       ├── native-messaging-hosts
│       │   └── passff.json -> ../../../share/passff-host/passff.json
│       └── pkcs11-modules
└── share
    ├── [...]
    └── passff-host
        ├── passff.json -> /nix/store/pag1akgbmls1xa63h6rzmb0h6xxwwzmy-passff-host-1.2.4/share/passff-host/passff.json
        └── passff.py -> /nix/store/pag1akgbmls1xa63h6rzmb0h6xxwwzmy-passff-host-1.2.4/share/passff-host/passff.py
```
Still perfectly fine.
Then the `firefox` module sets
```nix
home.file.".mozilla/native-messaging-hosts" = {
  source = "${nativeMessagingHostsJoined}/lib/mozilla/native-messaging-hosts";
  recursive = true;
}
```
The `file` module then calls `lndir -silent "/nix/store/bv62k5yl7jwzkhyci838ir3vgz59gqsa-ff_native-messaging-hosts/lib/mozilla/native-messaging-hosts" ".mozilla/native-messaging-hosts"`
To see the problem, here is the resulting directory tree:
```
.mozilla
├── [...]
└── native-messaging-hosts
    └── passff.json -> ../../../share/passff-host/passff.json
```
Obviously this symlink doesn't go anywhere. `lndir` created a broken symlink.
To fix this, add the `-ignorelinks` argument to `lndir`, which causes it to instead just create a symlink to the symlink in `ff_native-messaging-hosts`:
```
.mozilla
├── [...]
└── native-messaging-hosts
    └── passff.json -> /nix/store/bv62k5yl7jwzkhyci838ir3vgz59gqsa-ff_native-messaging-hosts/lib/mozilla/native-messaging-hosts/passff.json
```
2025-03-07 18:12:56 -06:00
..
accounts treewide: remove with lib (#6512) 2025-03-07 14:16:46 -06:00
config treewide: remove with lib (#6512) 2025-03-07 14:16:46 -06:00
files files: make collision error message more helpful 2024-04-30 00:41:45 +02:00
i18n/input-method treewide: remove with lib (#6512) 2025-03-07 14:16:46 -06:00
launchd launchd: sync up with changes from nix-darwin (#6508) 2025-02-27 17:38:18 -06:00
lib wpaperd: add systemd service; move to services/ from programs/ (#6302) 2025-02-22 11:32:15 -06:00
lib-bash home-manager: move profile management 2025-01-03 11:22:59 +01:00
misc treewide: use graphical-session.target for GUI services (#5785) 2025-03-07 18:09:12 -06:00
po Translate using Weblate (Catalan) 2025-02-21 19:15:09 +01:00
programs granted: support fish shell (#6549) 2025-03-07 13:29:16 -06:00
services treewide: use graphical-session.target for GUI services (#5785) 2025-03-07 18:09:12 -06:00
targets treewide: remove with lib (#6512) 2025-03-07 14:16:46 -06:00
default.nix treewide: remove with lib (#6512) 2025-03-07 14:16:46 -06:00
files.nix files: don't handle symlinks in a special way when home.file.<name>.recursive is set to true 2025-03-07 18:12:56 -06:00
home-environment.nix treewide: remove with lib (#6512) 2025-03-07 14:16:46 -06:00
manual.nix treewide: remove with lib (#6512) 2025-03-07 14:16:46 -06:00
modules.nix treewide: remove with lib (#6512) 2025-03-07 14:16:46 -06:00
systemd-activate.sh systemd: don't try to restart templates 2024-06-26 18:14:48 +02:00
systemd.nix systemd: use sd-switch by default 2025-01-01 16:31:32 +01:00
wayland.nix wayland: create tray.target if xsession is not enabled (#6332) 2025-02-06 22:50:03 +01:00
xresources.nix treewide: remove with lib (#6512) 2025-03-07 14:16:46 -06:00
xsession.nix treewide: remove with lib (#6512) 2025-03-07 14:16:46 -06:00