16 lines
220 B
Nix
16 lines
220 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.synix.homeModules.stylix
|
|
];
|
|
|
|
stylix = {
|
|
enable = true;
|
|
scheme = "moonfly";
|
|
targets = {
|
|
waybar'.enable = true;
|
|
bemenu'.enable = true;
|
|
};
|
|
};
|
|
}
|