Added foot user module
This commit is contained in:
parent
9d7655193c
commit
7f318bc1b7
|
@ -8,6 +8,7 @@
|
|||
./feishin/default.nix
|
||||
./firefox/default.nix
|
||||
./fontconfig/default.nix
|
||||
./foot/default.nix
|
||||
./obsidian/default.nix
|
||||
./shell/bash.nix
|
||||
./shell/fish.nix
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
{config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.foot;
|
||||
in {
|
||||
options.modules.foot.enable = mkEnableOption "foot";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
settings = {
|
||||
main = let
|
||||
font = config.theming.fonts.monospace.name;
|
||||
size = toString config.theming.fonts.monospace.recommendedSize;
|
||||
in {
|
||||
font = mkForce "${font}:style=Regular:size=${size}";
|
||||
font-bold = "${font}:style=Bold:size=${size}";
|
||||
font-italic = "${font}:style=Italic:size=${size}";
|
||||
font-bold-italic = "${font}:style=Bold Italic:size=${size}";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -485,20 +485,20 @@ in {
|
|||
programs.neovim.defaultEditor = true;
|
||||
|
||||
# Foot setup
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
settings = {
|
||||
main = let
|
||||
font = fonts.monospace.name;
|
||||
size = toString fonts.sizes.terminal;
|
||||
in {
|
||||
font = lib.mkForce "${font}:style=Regular:size=${size}";
|
||||
font-bold = "${font}:style=Bold:size=${size}";
|
||||
font-italic = "${font}:style=Italic:size=${size}";
|
||||
font-bold-italic = "${font}:style=Bold Italic:size=${size}";
|
||||
};
|
||||
};
|
||||
};
|
||||
# programs.foot = {
|
||||
# enable = true;
|
||||
# settings = {
|
||||
# main = let
|
||||
# font = fonts.monospace.name;
|
||||
# size = toString fonts.sizes.terminal;
|
||||
# in {
|
||||
# font = lib.mkForce "${font}:style=Regular:size=${size}";
|
||||
# font-bold = "${font}:style=Bold:size=${size}";
|
||||
# font-italic = "${font}:style=Italic:size=${size}";
|
||||
# font-bold-italic = "${font}:style=Bold Italic:size=${size}";
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
|
||||
# Fuzzel setup
|
||||
#programs.fuzzel = {
|
||||
|
|
Loading…
Reference in New Issue