Migrate old home-manager modules
This commit is contained in:
14
modules/home-manager/terminal.nix
Normal file
14
modules/home-manager/terminal.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.terminal = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
example = "alacritty";
|
||||
default = "alacritty";
|
||||
description = "The default terminal to use.";
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user