Use modules folder
This commit is contained in:
parent
e42f845f09
commit
2903676336
46 changed files with 21 additions and 21 deletions
17
modules/terminal/default.nix
Normal file
17
modules/terminal/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ ... }:
|
||||
|
||||
let
|
||||
theme = import ../theme;
|
||||
in
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
# https://github.com/kovidgoyal/kitty-themes/blob/master/themes.json
|
||||
theme = "${theme.kitty-theme}";
|
||||
font = {
|
||||
name = "FiraCode Nerd Font Mono";
|
||||
size = 12;
|
||||
};
|
||||
extraConfig = "enable_audio_bell 0\nconfirm_os_window_close 0\nbackground_opacity 0.7";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue