Compare commits

..

1 commit

Author SHA1 Message Date
c1309a5d43
refactor: don't include the whole modules
All checks were successful
/ check (push) Successful in 8s
/ check-renovaterc (push) Successful in 2s
/ build-packages (push) Successful in 14s
/ build-vm (push) Successful in 1s
/ report-size (push) Successful in 4s
Instead only import the nixos/hm/nixvim module.

This _should_ reduce rebuilds.
2025-03-21 17:11:23 +01:00
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{
imports = [ ./vm_config.nix ];
imports = [ ./vm-config.nix ];
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "en_US.UTF-8";

View file

@ -8,7 +8,7 @@
defaultModules = [
inputs.nixvim.homeManagerModules.nixvim
self.nixvimModules.homeManager
../module/hm
../modules/hm
];
nixos = {
imports = defaultModules;