commit 9d73ff0dab77238f475edf0a8d9aef68ba23ece8
parent abebfaea3904518a09ff1a6d543eab40fcd4c98b
Author: Vincent Demeester <vincent@sbr.pm>
Date: Fri, 10 Jun 2022 17:38:16 +0200
users/vincent: symlink .oath
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/users/vincent/desktop/default.nix b/users/vincent/desktop/default.nix
@@ -1,4 +1,4 @@
-{ lib, pkgs, nixosConfig, ... }:
+{ config, lib, pkgs, nixosConfig, ... }:
{
imports = [
@@ -45,4 +45,8 @@
xdg.configFile."xorg/parens.compose".source = ./xorg/parens.compose;
xdg.configFile."xorg/modletters.compose".source = ./xorg/modletters.compose;
home.file.".local/share/applications/google-meet.desktop".source = ./xorg/google-meet.desktop;
+ home.file.".oath" = {
+ source = config.lib.file.mkOutOfStoreSymlink "/home/vincent/desktop/documents/.oath";
+ recursive = true;
+ };
}