diff --git a/home-manager/desktop/sway.nix b/home-manager/desktop/sway.nix index 53aa3fd..9d049b1 100644 --- a/home-manager/desktop/sway.nix +++ b/home-manager/desktop/sway.nix @@ -11,8 +11,6 @@ ]; home.packages = with pkgs; [ - alacritty - ghostty tofi i3status-rust wlsunset @@ -31,9 +29,4 @@ "i3status-rust".source = "${config.dotfiles.path}/.config/i3status-rust"; "tofi/config".source = "${config.dotfiles.path}/.config/tofi/config"; }; - - programs.alacritty.enable = true; - xdg.configFile."alacritty".source = "${config.dotfiles.path}/.config/alacritty"; - - xdg.configFile."ghostty/config".source = "${config.dotfiles.path}/.config/ghostty/config"; } diff --git a/home-manager/desktop/terminal.nix b/home-manager/desktop/terminal.nix new file mode 100644 index 0000000..5f35837 --- /dev/null +++ b/home-manager/desktop/terminal.nix @@ -0,0 +1,21 @@ +{ + config, + pkgs, + self, + ... +}: +{ + imports = [ + self.homeManagerModules.dotfiles + ]; + + home.packages = [ + pkgs.alacritty + pkgs.ghostty + ]; + + programs.alacritty.enable = true; + xdg.configFile."alacritty".source = "${config.dotfiles.path}/.config/alacritty"; + + xdg.configFile."ghostty/config".source = "${config.dotfiles.path}/.config/ghostty/config"; +}