Files
NixOS/modules/stylix/home.nix
Cookiez c6862c78db - Formatted everything using Alejandra
- Added 'ncli format' as a quick command to format everything
2026-03-11 16:03:16 +01:00

28 lines
414 B
Nix

{
pkgs,
inputs,
username,
...
}: {
imports = [
];
services = {
};
stylix = {
targets = {
kitty.enable = false;
#firefox = {
# enable = true;
# colorTheme.enable = true;
# profileNames = [ "${username}" ];
#};
qt.enable = true;
qt.platform = "kde";
#kde.enable = false;
zen-browser.profileNames = ["${username}"];
};
};
}