1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-06 13:23:27 +02:00
home-manager/tests/modules/programs/bottom/empty-settings.nix
polykernel 4b964d2f7b
bottom: add module
Bottom is a cross-platform graphical process/system monitor with a
customizable interface and a multitude of features.

Two unit tests were added validate the module behavior for an empty
configuration and the example configuration.
2021-09-14 23:40:21 +02:00

17 lines
243 B
Nix

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