move all home level programs to progems dir
This commit is contained in:
parent
77d70dcf2e
commit
bc450a9fe7
27 changed files with 27 additions and 21 deletions
32
home/modules/programs/fuzzel.nix
Normal file
32
home/modules/programs/fuzzel.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.youthlic.programs.fuzzel;
|
||||
in
|
||||
{
|
||||
options = {
|
||||
youthlic.programs.fuzzel = {
|
||||
enable = lib.mkEnableOption "fuzzel";
|
||||
};
|
||||
};
|
||||
config = {
|
||||
programs.fuzzel = lib.mkIf cfg.enable {
|
||||
enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
# font = "LXGW WenKai:size=11";
|
||||
prompt = "'λ '";
|
||||
dpi-aware = true;
|
||||
};
|
||||
# colors = {
|
||||
# background = "282a36dd";
|
||||
# text = "f8f8f2ff";
|
||||
# match = "8be9fdff";
|
||||
# selection-match = "8be9fdff";
|
||||
# selection = "44475add";
|
||||
# selection-text = "f8f8f2ff";
|
||||
# border = "bd93f9ff";
|
||||
# };
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue