Skip to content

Commit 1c44f44

Browse files
committed
ghostty init
1 parent 59bb92b commit 1c44f44

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

nix/home-manager/common/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ in
1313
./claude
1414
./fish
1515
neovim
16+
./symlink
1617
];
1718

1819
home = rec {
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)