mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
c067d57fc4
a window switcher for sway
21 lines
499 B
Nix
21 lines
499 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
programs.swayr = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { };
|
|
systemd.enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/swayrd.service
|
|
|
|
assertFileExists $serviceFile
|
|
assertFileRegex $serviceFile 'ExecStart=.*/bin/swayrd'
|
|
assertFileRegex $serviceFile 'Environment=RUST_BACKTRACE=1'
|
|
|
|
assertPathNotExists home-files/.config/swayr/config.toml
|
|
'';
|
|
};
|
|
}
|