75fa0ae5af
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
15 lines
205 B
Nix
15 lines
205 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.boxxy.enable = true;
|
|
|
|
test.stubs.boxxy = { };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/boxxy
|
|
'';
|
|
};
|
|
}
|