1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
home-manager/tests/modules/programs/superfile/empty-settings.nix
Lucas Wagler 6bd0a20fc7 superfile: initial support
Add initial support for `superfile` file manager.
2025-03-12 20:13:26 -04:00

16 lines
324 B
Nix

{ pkgs, lib, ... }:
{
programs.superfile.enable = true;
xdg.enable = lib.mkIf pkgs.stdenv.isDarwin false;
nmt.script = let
configDir = if !pkgs.stdenv.isDarwin then
".config/superfile"
else
"Library/Application Support/superfile";
in ''
assertPathNotExists home-files/${configDir}
'';
}