Compare commits

..

2 commits

Author SHA1 Message Date
b5eae95898
wip: niri take 2 [skip-ci]
All checks were successful
/ check (push) Successful in 1m6s
/ check-renovaterc (push) Successful in 3s
/ build-packages (push) Successful in 1m22s
/ build-vm (push) Successful in 7m36s
/ report-size (push) Successful in 1m7s
Take two, since one wasn't enough.
2025-03-21 17:11:23 +01:00
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 @@
{
import = [ ./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;