10 lines
194 B
Nix
10 lines
194 B
Nix
{ ... }: {
|
|
flake.homeModules.commonFeatureOsd = { ... }: {
|
|
services.swayosd = {
|
|
enable = true;
|
|
};
|
|
|
|
home.file.".config/swayosd/style.css".source = ./swayosd/style.css;
|
|
};
|
|
}
|