foot home manager
This commit is contained in:
parent
07e4e0ece4
commit
fe03c7d73c
3 changed files with 55 additions and 285 deletions
54
nix/home/yt/foot.nix
Normal file
54
nix/home/yt/foot.nix
Normal file
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
...
|
||||
}: {
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
font = "RobotoMono Nerd Font:size=8";
|
||||
dpi-aware = "yes";
|
||||
};
|
||||
bell = {
|
||||
urgent = "no";
|
||||
notify = "no";
|
||||
visual = "yes";
|
||||
};
|
||||
cursor = {
|
||||
style = "beam";
|
||||
blink = "yes";
|
||||
blink-rate = 500;
|
||||
beam-thickness = 1.5;
|
||||
};
|
||||
mouse = {
|
||||
hide-when-typing = "yes";
|
||||
};
|
||||
# tokyonight: https://codeberg.org/dnkl/foot/src/branch/master/themes/tokyonight-night
|
||||
colors = {
|
||||
background = "1a1b26";
|
||||
foreground = "c0caf5";
|
||||
regular0 = "15161E";
|
||||
regular1 = "f7768e";
|
||||
regular2 = "9ece6a";
|
||||
regular3 = "e0af68";
|
||||
regular4 = "7aa2f7";
|
||||
regular5 = "bb9af7";
|
||||
regular6 = "7dcfff";
|
||||
regular7 = "a9b1d6";
|
||||
bright0 = "414868";
|
||||
bright1 = "f7768e";
|
||||
bright2 = "9ece6a";
|
||||
bright3 = "e0af68";
|
||||
bright4 = "7aa2f7";
|
||||
bright5 = "bb9af7";
|
||||
bright6 = "7dcfff";
|
||||
bright7 = "c0caf5";
|
||||
};
|
||||
|
||||
key-bindings = {
|
||||
clipboard-copy = "Control+Shift+c XF86Copy";
|
||||
clipboard-paste = "Control+Shift+v XF86Paste";
|
||||
quit = "Control+q";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -8,6 +8,7 @@
|
|||
}: {
|
||||
imports = [
|
||||
./common.nix
|
||||
./foot.nix
|
||||
];
|
||||
home = {
|
||||
username = "yt";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue