mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
22 lines
458 B
Nix
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}
|
|
'';
|
|
};
|
|
}
|