dotfiles/home/vicinae/default.nix

17 lines
366 B
Nix

{ inputs, ... }: # Add inputs here
{
# Import the module definition here
imports = [ inputs.vicinae.homeManagerModules.default ];
services.vicinae = {
enable = true;
systemd = {
enable = true;
autoStart = true;
environment = {
QT_SCALE_FACTOR="1.5";
};
};
};
}