summaryrefslogtreecommitdiff
path: root/modules/root/software/desktop.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.nix
parent4730b215fdc4095800fedfdf690c12fec994bb6b (diff)
downloadnixos-9d1b3f23a64506988608143f4bca8ab4c5141d3e.tar.xz
nixos-9d1b3f23a64506988608143f4bca8ab4c5141d3e.zip
update moreee
Diffstat (limited to 'modules/root/software/desktop.nix')
-rw-r--r--modules/root/software/desktop.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/root/software/desktop.nix b/modules/root/software/desktop.nix
deleted file mode 100644
index 195d742..0000000
--- a/modules/root/software/desktop.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ pkgs, lib, config, ... }: {
- options = {
- software.desktop.enable = lib.mkEnableOption "enables desktop apps";
- };
-
- config = lib.mkIf config.software.desktop.enable {
- programs.dconf.enable = true; # For home-manager to configure gtk
-
- environment.systemPackages = with pkgs; [
- alacritty
- arandr
- dmenu
- firefox
- mpv
- pavucontrol
- pcmanfm
- redshift
- sxiv
- zathura
- ];
- };
-}