this is a stupid way to do this shit
This commit is contained in:
parent
68b6fec533
commit
8cf567fdc4
3 changed files with 30 additions and 19 deletions
|
|
@ -1,10 +1,13 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
|
config,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
options.enableAlacritty = lib.mkEnableOption "Alacritty terminal emulator";
|
||||||
|
config = {
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = config.enableAlacritty;
|
||||||
settings = {
|
settings = {
|
||||||
font = {
|
font = {
|
||||||
size = 17.0;
|
size = 17.0;
|
||||||
|
|
@ -22,4 +25,5 @@
|
||||||
env.TERM = "xterm-256color";
|
env.TERM = "xterm-256color";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,16 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
|
config,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
options.enableGhostty = lib.mkEnableOption "Ghostty terminal emulator";
|
||||||
|
config = {
|
||||||
programs.ghostty = {
|
programs.ghostty = {
|
||||||
enable = true;
|
enable = config.enableGhostty;
|
||||||
settings = {
|
settings = {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,4 +30,6 @@
|
||||||
|
|
||||||
enableGTK = config.myModules.enableKDE;
|
enableGTK = config.myModules.enableKDE;
|
||||||
enableFirefox = config.myModules.enableKDE;
|
enableFirefox = config.myModules.enableKDE;
|
||||||
|
enableAlacritty = config.myModules.enableKDE;
|
||||||
|
enableGhostty = config.myModules.enableKDE;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue