home: ghostty init

This commit is contained in:
ooks-io 2024-12-29 22:12:07 +11:00
parent 1fa7ae2a66
commit e9451f4a4a
4 changed files with 193 additions and 31 deletions

View file

@ -1,5 +1,6 @@
{
imports = [
./foot.nix
./ghostty.nix
];
}

View file

@ -0,0 +1,14 @@
{
inputs,
inputs',
...
}: {
imports = [
inputs.ghostty-hm.homeModules.default
];
programs.ghostty = {
enable = true;
package = inputs'.ghostty.packages.default;
};
}