.dotfiles/dot_config/flake/home/gui.nix
Tyler Mayoff 7ccdf27209 niri (#39)
Reviewed-on: https://codeberg.org/tmayoff/.dotfiles/pulls/39
Co-authored-by: Tyler Mayoff <tyler@tylermayoff.com>
Co-committed-by: Tyler Mayoff <tyler@tylermayoff.com>
2025-08-31 20:06:20 +02:00

35 lines
560 B
Nix

{pkgs, ...}: {
imports = [
./ghostty.nix
];
home.packages = with pkgs; [
adw-gtk3
pkgs.mods.discord
# Office
libreoffice
obsidian
];
# programs.vscode.enable = true;
# programs.alacritty = {
# enable = true;
# };
# programs.wezterm = {
# enable = false;
# extraConfig = ''
# return {
# font_size=9.25,
# color_scheme="catppuccin-latte",
# hide_tab_bar_if_only_one_tab = true,
# window_frame = {
# font_size = 10
# },
# }
# '';
# };
}