chore: import nixos files
This commit is contained in:
parent
5ea6b4bd06
commit
6823f37d6b
42 changed files with 1520 additions and 60 deletions
19
kitty.nix
Normal file
19
kitty.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ theme, ... }:
|
||||
|
||||
let
|
||||
theme_name = if theme == "light" then "Solarized Light" else "Solarized Dark";
|
||||
in
|
||||
{
|
||||
programs = {
|
||||
kitty = {
|
||||
enable = true;
|
||||
theme = theme_name;
|
||||
font = {
|
||||
name = "FiraCode";
|
||||
};
|
||||
settings = {
|
||||
tab_bar_style = "powerline";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue