big refactor
This commit is contained in:
commit
76d68230f6
81 changed files with 3065 additions and 0 deletions
18
options/desktop/programs.nix
Normal file
18
options/desktop/programs.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ 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";
|
||||
};
|
||||
}
|
||||
Reference in a new issue