Files
nixos/apps/stylix/home.nix
T
2025-12-24 21:00:59 -06:00

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";
};
}