terminal
This commit is contained in:
parent
8ad9377b38
commit
0f6fdf63f1
5 changed files with 259 additions and 250 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Reference in a new issue