diff options
| author | seth <[email protected]> | 2023-01-31 19:36:57 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-01-31 20:21:24 -0500 |
| commit | b2922a1fef66c1ba9e44c11a2f6316007234dab2 (patch) | |
| tree | f799c8ba37a8ee8040a35bf4bfd28248af9f8b49 /users/seth/programs/mangohud/default.nix | |
| parent | f1b987d82e11a2c3988902acebee2f0d8e454295 (diff) | |
add standalone hm option
Diffstat (limited to 'users/seth/programs/mangohud/default.nix')
| -rw-r--r-- | users/seth/programs/mangohud/default.nix | 6 |
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; } |
