This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/options/desktop/programs.nix
2026-04-09 10:36:32 +07:00

18 lines
No EOL
603 B
Nix

{ lib, ... }: {
options.device.programs = {
terminal = lib.mkOption {
type = lib.types.str;
default = "ghostty";
description = "Terminal";
};
nixcord.enable = lib.mkEnableOption "nixcord";
tmux.enable = lib.mkEnableOption "tmux";
starship.enable = lib.mkEnableOption "starship";
fastfetch.enable = lib.mkEnableOption "fastfetch";
steam.enable = lib.mkEnableOption "steam";
obs-studio.enable = lib.mkEnableOption "Obs Studio";
cider-2.enable = lib.mkEnableOption "Cider 2";
};
}