blob: 534769661b750bcb3a7dfe54de55e80968ff5317 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ 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
virt-manager
];
};
}
|