Added stylix

This commit is contained in:
2025-10-19 01:55:37 -04:00
parent 7929e07296
commit 6febc0906b
4 changed files with 340 additions and 15 deletions

View File

@@ -8,6 +8,7 @@
./nvf.nix
./packages.nix
./plasma.nix
./stylix.nix
./vscode.nix
./zsh.nix
];

24
modules/home/stylix.nix Normal file
View File

@@ -0,0 +1,24 @@
{
inputs,
pkgs,
...
}:
{
imports = [
inputs.stylix.homeModules.stylix
];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
autoEnable = false;
targets = {
kde.enable = true;
lazygit.enable = true;
vscode = {
enable = true;
profileNames = [ "default" ];
};
};
};
}