Files
home-manager/tests/modules/programs/workstyle/basic-configuration.nix
Michael Farber Brodsky 90e53291cb workstyle: add module
2026-01-09 10:17:21 -05:00

22 lines
458 B
Nix

{
config = {
programs.workstyle = {
enable = true;
settings = {
alice = "A";
bob = "B";
other = {
fallback_icon = "F";
deduplicate_icons = false;
separator = ": ";
};
};
};
nmt.script = ''
assertFileExists home-files/.config/workstyle/config.toml
assertFileContent home-files/.config/workstyle/config.toml ${./basic-configuration.toml}
'';
};
}