Skip to content

Commit 5fa10a3

Browse files
committed
📦 Added pablodraw package (ANSI art)
1 parent d972cc4 commit 5fa10a3

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
config,
3+
lib,
4+
pkgs,
5+
namespace,
6+
...
7+
}:
8+
let
9+
inherit (lib) mkIf;
10+
inherit (lib.${namespace}) mkBoolOpt;
11+
12+
cfg = config.${namespace}.programs.pablodraw;
13+
in
14+
{
15+
options.${namespace}.programs.pablodraw = {
16+
enable = mkBoolOpt false "Whether or not to manage pablodraw.";
17+
};
18+
19+
config = mkIf cfg.enable { home.packages = with pkgs; [ pablodraw ]; };
20+
}

modules/home/roles/desktop/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ in
6262
qbittorrent = enabled;
6363
spicetify = enabled;
6464
quake-injector = enabled;
65+
pablodraw = enabled;
6566
};
6667
};
6768
};

0 commit comments

Comments
 (0)