mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
11 lines
202 B
Nix
11 lines
202 B
Nix
|
{ config, ... }: {
|
||
|
programs.swaylock = {
|
||
|
enable = true;
|
||
|
package = config.lib.test.mkStubPackage { };
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertPathNotExists home-files/.config/swaylock/config
|
||
|
'';
|
||
|
}
|