15 lines
233 B
Nix
15 lines
233 B
Nix
{
|
|
inputs,
|
|
myConfig,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.stylix.homeModules.stylix
|
|
];
|
|
stylix = {
|
|
enable = true;
|
|
autoEnable = false;
|
|
image = "/home/${myConfig.nixos.username}/Pictures/Wallpapers/nord-1.png";
|
|
};
|
|
}
|