mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
19 lines
295 B
Nix
19 lines
295 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
];
|
|
|
|
stylix.targets.nixvim = {
|
|
enable = true;
|
|
transparent_bg = {
|
|
main = true;
|
|
sign_column = true;
|
|
};
|
|
};
|
|
|
|
programs.nixvim = {
|
|
enable = true;
|
|
|
|
plugins.lightline.enable = true;
|
|
};
|
|
}
|