This commit is contained in:
Asaki Yuki 2026-04-13 19:23:45 +07:00
parent 8ad9377b38
commit 0f6fdf63f1
5 changed files with 259 additions and 250 deletions

View file

@ -1,10 +1,13 @@
{ lib, pkgs, ... }:
{
options.device.programs = {
terminal = lib.mkOption {
type = lib.types.str;
default = "ghostty";
description = "Terminal";
terminal = {
enable = lib.mkEnableOption "terminal";
name = lib.mkOption {
type = lib.types.str;
default = "ghostty";
description = "Terminal";
};
};
nixcord.enable = lib.mkEnableOption "nixcord";