diff options
author | Karel Kočí <cynerd@email.cz> | 2024-01-27 13:20:21 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-01-27 13:20:21 +0100 |
commit | fc100c5a7eab90d02edc21f6703108f414fa0aaf (patch) | |
tree | ff02db0ac5acc696cc955300a9cdcea955215194 /nixos | |
parent | c1a76b4403edcf5e2a147d68b7bbdf1c33ac95ef (diff) | |
download | nixos-personal-fc100c5a7eab90d02edc21f6703108f414fa0aaf.tar.gz nixos-personal-fc100c5a7eab90d02edc21f6703108f414fa0aaf.tar.bz2 nixos-personal-fc100c5a7eab90d02edc21f6703108f414fa0aaf.zip |
nixos/desktop: add nix-ld
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/modules/desktop.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/modules/desktop.nix b/nixos/modules/desktop.nix index 7d110ae..774353f 100644 --- a/nixos/modules/desktop.nix +++ b/nixos/modules/desktop.nix @@ -60,7 +60,7 @@ in { notmuch astroid taskwarrior - #vdirsyncer + vdirsyncer #khal #khard gnupg @@ -171,6 +171,10 @@ in { nativeMessagingHosts.packages = with pkgs; [browserpass]; }; light.enable = mkIf cnf.laptop true; + nix-ld = { + enable = true; + libraries = with pkgs; [xorg.libXpm]; + }; }; xdg.portal = { enable = true; |