desktop/foot: home-manager fever dream

This commit is contained in:
Sakooooo 2024-10-15 18:57:48 +04:00
parent 8df0c5cf5e
commit 0b17752bce
Signed by: sako
GPG key ID: FE52FD65B76E4751

View file

@ -1,23 +1,30 @@
{ options, config, lib, pkgs, ...}: { options, config, lib, pkgs, ... }:
let let cfg = config.modules.desktop.foot;
cfg = config.modules.desktop.foot;
in { in {
options.modules.desktop.foot = { options.modules.desktop.foot = { enable = lib.mkEnableOption false; };
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs; [ users.users.sako.packages = with pkgs; [ foot ];
foot
];
home-manager.users.sako = {pkgs, ...}: { home-manager.users.sako = { pkgs, ... }: {
xdg.configFile = { programs.foot = {
foot = { enable = true;
source = ../../../config/foot; server.enable = false;
settings = {
main = {
term = "xterm-256color";
font = "JetBrainsMono NF:size=12";
};
scrollback = { lines = 1000; };
cursor = {
style = "block";
blink = "yes";
blink-rate = "1000";
};
mouse = { hide-when-typing = "yes"; };
};
}; };
}; };
}; };
};
} }