diff options
Diffstat (limited to 'home-manager/dotfiles')
| -rw-r--r-- | home-manager/dotfiles/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/home-manager/dotfiles/default.nix b/home-manager/dotfiles/default.nix index 7445fdb..b6dfd13 100644 --- a/home-manager/dotfiles/default.nix +++ b/home-manager/dotfiles/default.nix @@ -1,5 +1,6 @@ { config, pkgs, ... }: let + atuinPath = "${config.home.homeDirectory}/.nix/dotfiles/atuin"; ghosttyPath = "${config.home.homeDirectory}/.nix/dotfiles/ghostty"; helixPath = "${config.home.homeDirectory}/.nix/dotfiles/helix"; labwcPath = "${config.home.homeDirectory}/.nix/dotfiles/labwc"; @@ -15,7 +16,8 @@ # configFile points to ~/.config configFile = { - "ghostty".source = config.lib.file.mkOutOfStoreSymlink ghosttyPath; + "atuin".source = config.lib.file.mkOutOfStoreSymlink atuinPath; + "ghostty".source = config.lib.file.mkOutOfStoreSymlink ghosttyPath; "helix".source = config.lib.file.mkOutOfStoreSymlink helixPath; "labwc".source = config.lib.file.mkOutOfStoreSymlink labwcPath; "mako".source = config.lib.file.mkOutOfStoreSymlink makoPath; |
