From 544a1007b1d0c764ab9b5251fb77ff31a0902945 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Thu, 10 Oct 2024 12:50:23 +0200 Subject: [PATCH] feat: clean up files, add programming symlink --- hosts/lambdaos/home.nix | 2 +- modules/applications/firefox.nix | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/lambdaos/home.nix b/hosts/lambdaos/home.nix index 81c0157..d60e352 100644 --- a/hosts/lambdaos/home.nix +++ b/hosts/lambdaos/home.nix @@ -108,7 +108,7 @@ # org.gradle.console=verbose # org.gradle.daemon.idletimeout=3600000 # ''; - "ykcs/ykcs11.so".source = "${pkgs.yubico-piv-tool}/lib/libykcs11.so"; + "programming".source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/Documents/programming/"; }; # Home Manager can also manage your environment variables through diff --git a/modules/applications/firefox.nix b/modules/applications/firefox.nix index a5a54e7..a6469dc 100644 --- a/modules/applications/firefox.nix +++ b/modules/applications/firefox.nix @@ -18,6 +18,9 @@ in pkgs.pinentry-qt ]; + home.file = { + "ykcs/ykcs11.so".source = "${pkgs.yubico-piv-tool}/lib/libykcs11.so"; + }; }; }