Compare commits

...

2 commits

Author SHA1 Message Date
8970bed250
fix(home): Get rid of floating titlebars 2024-11-23 14:11:21 -08:00
7b57e86d34
feat(home): Calibre 2024-11-23 14:11:09 -08:00
3 changed files with 22 additions and 0 deletions

View file

@ -36,6 +36,7 @@ in
amfora = enabled;
bat = enabled;
btop = enabled;
calibre = enabled;
cava = enabled;
cheat = enabled;
curl = enabled;

View file

@ -0,0 +1,20 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.marleyos.programs.calibre;
in
{
options.marleyos.programs.calibre.enable = mkEnableOption "calibre";
config = mkIf cfg.enable {
home.packages = with pkgs; [
calibre
];
};
}

View file

@ -58,6 +58,7 @@ in
floating.border = 0;
window.titlebar = false;
floating.titlebar = false;
gaps = {
smartBorders = "no_gaps";