summaryrefslogtreecommitdiff
path: root/users/seth/programs/mangohud/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/programs/mangohud/default.nix')
-rw-r--r--users/seth/programs/mangohud/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/users/seth/programs/mangohud/default.nix b/users/seth/programs/mangohud/default.nix
index 3c203c4..ff240b8 100644
--- a/users/seth/programs/mangohud/default.nix
+++ b/users/seth/programs/mangohud/default.nix
@@ -4,11 +4,11 @@
...
}: let
homePackages =
- if config.seth.desktop != "null"
+ if config.seth.desktop != ""
then with pkgs; [mangohud]
else [];
mangohudConf =
- if config.seth.desktop != "null"
+ if config.seth.desktop != ""
then {
source = ./config;
recursive = true;
@@ -17,5 +17,5 @@
in {
home.packages = homePackages;
- xdg.configFile.MangoHud = mangohudConf;
+ # xdg.configFile.MangoHud = mangohudConf;
}