mirror of
https://github.com/nix-community/home-manager.git
synced 2025-04-13 15:57:47 +00:00
12 lines
298 B
Nix
12 lines
298 B
Nix
|
{ config, ... }: {
|
||
|
services.swww = {
|
||
|
enable = true;
|
||
|
package = config.lib.test.mkStubPackage { outPath = "@swww@"; };
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
serviceFile=home-files/.config/systemd/user/swww.service
|
||
|
assertFileContent $serviceFile ${./swww-graphical-session-target.service}
|
||
|
'';
|
||
|
}
|