1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/programs/bottom/empty-settings.nix

17 lines
243 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.bottom = {
enable = true;
package = pkgs.writeScriptBin "dummy" "";
};
nmt.script = ''
assertPathNotExists home-files/.config/bottom
'';
};
}