aboutsummaryrefslogtreecommitdiff
path: root/user/wm/foot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'user/wm/foot.nix')
-rw-r--r--user/wm/foot.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/user/wm/foot.nix b/user/wm/foot.nix
new file mode 100644
index 0000000..02e1ae6
--- /dev/null
+++ b/user/wm/foot.nix
@@ -0,0 +1,36 @@
+{ config, ... }:
+{
+ programs.foot = {
+ enable = true;
+ settings = {
+ bell.urgent = "yes";
+ colors = {
+ background = "2e3440";
+ bright0 = "4c566a";
+ bright1 = "bf616a";
+ bright2 = "a3be8c";
+ bright3 = "ebcb8b";
+ bright4 = "81a1c1";
+ bright5 = "b48ead";
+ bright6 = "8fbcbb";
+ bright7 = "eceff4";
+ foreground = "eceff4";
+ regular0 = "3b4252";
+ regular1 = "bf616a";
+ regular2 = "a3be8c";
+ regular3 = "ebcb8b";
+ regular4 = "5e81ac";
+ regular5 = "b48ead";
+ regular6 = "88c0d0";
+ regular7 = "e5e9f0";
+ };
+
+ main = {
+ dpi-aware = "yes";
+ font = "Fira Code:size=11";
+ };
+
+ mouse.hide-when-typing = "yes";
+ };
+ };
+}