summaryrefslogtreecommitdiff
path: root/modules/root/software/desktop-extra.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/root/software/desktop-extra.nix')
-rw-r--r--modules/root/software/desktop-extra.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/root/software/desktop-extra.nix b/modules/root/software/desktop-extra.nix
deleted file mode 100644
index a3bf8fb..0000000
--- a/modules/root/software/desktop-extra.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ 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
- ];
- };
-}