Files
sydnix/modules/home/users/crumb/ghostty.nix
Madeleine Sydney c48a93ad10 feat: Add host sydpc
My, this is a lot TwT.  Much work was batched as part of the transition from
guix-rebound to nixos-testbed/sydpc.

- Discord/Vesktop module & config.
- Syncthing setup.
- Assorted Emacs changes.
- Waybar config.
- Niri config.
- Steam config.
- Some MPD.
- Stylix config.
- Files/Impermanence things.
- Enable Ghostty.
- God knows what else.
2025-03-20 09:02:25 -06:00

14 lines
252 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.sydnix.users.crumb.ghostty;
in {
options.sydnix.users.crumb.ghostty.enable =
lib.mkEnableOption "Ghostty, à la crumb";
config = lib.mkIf cfg.enable {
programs.ghostty.enable = true;
};
}