mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
feat: added user2 and refactored to accommodate
This commit is contained in:
parent
c169f84dcc
commit
9cdcf4fec4
97 changed files with 1473 additions and 1052 deletions
27
home/modules/gui/apps/emulators/ghostty/default.nix
Executable file
27
home/modules/gui/apps/emulators/ghostty/default.nix
Executable file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
flake,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
configPath = ./config;
|
||||
settingsPath = import (configPath + /settings.nix) {
|
||||
inherit
|
||||
flake
|
||||
pkgs
|
||||
;
|
||||
};
|
||||
themesPath = import (configPath + /themes.nix) {
|
||||
inherit
|
||||
flake
|
||||
;
|
||||
};
|
||||
in
|
||||
{
|
||||
programs.ghostty = {
|
||||
enable = true;
|
||||
package = flake.inputs.ghostty.packages.${pkgs.system}.default;
|
||||
settings = settingsPath;
|
||||
themes = themesPath;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue