summaryrefslogtreecommitdiff
path: root/modules/root/software/desktop-extra.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2024-10-02 22:37:06 -0500
committerTim Keller <tjk@tjkeller.xyz>2024-10-02 22:37:06 -0500
commit9d1b3f23a64506988608143f4bca8ab4c5141d3e (patch)
tree0955588a5f4bcb3f802b6398a537a83cdb0091e0 /modules/root/software/desktop-extra.nix
parent4730b215fdc4095800fedfdf690c12fec994bb6b (diff)
downloadnixos-9d1b3f23a64506988608143f4bca8ab4c5141d3e.tar.xz
nixos-9d1b3f23a64506988608143f4bca8ab4c5141d3e.zip
update moreee
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
- ];
- };
-}