Compare commits
2 commits
4efc63bf98
...
8970bed250
Author | SHA1 | Date | |
---|---|---|---|
8970bed250 | |||
7b57e86d34 |
3 changed files with 22 additions and 0 deletions
|
@ -36,6 +36,7 @@ in
|
|||
amfora = enabled;
|
||||
bat = enabled;
|
||||
btop = enabled;
|
||||
calibre = enabled;
|
||||
cava = enabled;
|
||||
cheat = enabled;
|
||||
curl = enabled;
|
||||
|
|
20
modules/home/programs/calibre/default.nix
Normal file
20
modules/home/programs/calibre/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
|
@ -58,6 +58,7 @@ in
|
|||
floating.border = 0;
|
||||
|
||||
window.titlebar = false;
|
||||
floating.titlebar = false;
|
||||
|
||||
gaps = {
|
||||
smartBorders = "no_gaps";
|
||||
|
|
Loading…
Reference in a new issue