We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59bb92b commit 1c44f44Copy full SHA for 1c44f44
2 files changed
nix/home-manager/common/default.nix
@@ -13,6 +13,7 @@ in
13
./claude
14
./fish
15
neovim
16
+ ./symlink
17
];
18
19
home = rec {
nix/home-manager/common/symlink/default.nix
@@ -0,0 +1,9 @@
1
+{ config, ...}:
2
+let
3
+ inherit (config.lib.file) mkOutOfStoreSymlink;
4
+in
5
+{
6
+ home.file.".config/ghostty" = {
7
+ source = mkOutOfStoreSymlink "${config.home.homeDirectory}/src/github.com/myuron/dotfiles/ghostty";
8
+ };
9
+}
0 commit comments