mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-21 17:59:39 +01:00
13 lines
223 B
Nix
13 lines
223 B
Nix
{ config, ... }:
|
|
{
|
|
config = {
|
|
programs.bottom = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/bottom
|
|
'';
|
|
};
|
|
}
|