blob: a3bf8fba13b95773dbe40bc27f815bbea8c5e97c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ pkgs, lib, config, ... }: {
options = {
software.desktop.extra.enable = lib.mkEnableOption "enables extra desktop apps";
};
config = lib.mkIf config.software.desktop.extra.enable {
environment.systemPackages = with pkgs; [
geeqie
gimp
inkscape
qbittorrent
qdirstat
ungoogled-chromium
];
};
}
|