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,21 +1,28 @@
{ options, config, lib, pkgs, ...}:
let
cfg = config.modules.desktop.foot;
{ options, config, lib, pkgs, ... }:
let cfg = config.modules.desktop.foot;
in {
options.modules.desktop.foot = {
enable = lib.mkEnableOption false;
};
options.modules.desktop.foot = { enable = lib.mkEnableOption false; };
config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
foot
];
users.users.sako.packages = with pkgs; [ foot ];
home-manager.users.sako = {pkgs, ...}: {
xdg.configFile = {
foot = {
source = ../../../config/foot;
home-manager.users.sako = { pkgs, ... }: {
programs.foot = {
enable = true;
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"; };
};
};
};