mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-27 14:34:22 -04:00
refactor terminal.nix into cli and gui
This commit is contained in:
parent
81503ad83f
commit
792458043d
7 changed files with 51 additions and 19 deletions
18
common/users/homeModules/terminal/kitty.nix
Normal file
18
common/users/homeModules/terminal/kitty.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
kitty
|
||||
];
|
||||
file = {
|
||||
kitty = {
|
||||
recursive = true;
|
||||
source = ../../../dotfiles/kitty;
|
||||
target = "./.config/kitty";
|
||||
};
|
||||
};
|
||||
shellAliases = {
|
||||
"icat" = "kitten icat";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue