Skip to content

Commit

Permalink
fix: disable stylix nixvim styling in hm config
Browse files Browse the repository at this point in the history
Apparently its still being styled???
  • Loading branch information
jalil-salame committed Nov 21, 2024
1 parent 73d5518 commit 08246ce
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions home/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,18 @@ in
];

config = lib.mkMerge [
{
(lib.mkIf (cfg.enable && cfg.styling.enable) {
stylix = {
enable = true;
targets.nixvim.enable = false; # I prefer doing it myself
};
})
(lib.mkIf cfg.enable {
nix.settings.use-xdg-base-directories = fromOs [
"nix"
"settings"
"use-xdg-base-directories"
] true;
}
(lib.mkIf (cfg.enable && cfg.styling.enable) { stylix.enable = true; })
(lib.mkIf cfg.enable {
programs = {
# Better cat (bat)
bat = {
Expand Down

0 comments on commit 08246ce

Please sign in to comment.