Compare commits

..

2 commits

Author SHA1 Message Date
63f9776a31
wip: niri take 2 [skip-ci]
Some checks failed
/ check (push) Successful in 9s
/ check-renovaterc (push) Successful in 3s
/ build-packages (push) Successful in 13s
/ build-vm (push) Failing after 1s
/ report-size (push) Has been skipped
Take two, since one wasn't enough.
2025-03-21 17:05:15 +01:00
7f3aaed6ed
refactor: don't include the whole modules
Some checks failed
/ check (push) Successful in 9s
/ check-renovaterc (push) Successful in 3s
/ build-packages (push) Successful in 13s
/ build-vm (push) Failing after 1s
/ report-size (push) Has been skipped
Instead only import the nixos/hm/nixvim module.

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

View file

@ -1,5 +1,5 @@
{
imports = [ ./vm-config.nix ];
import = [ ./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
../modules/hm
../module/hm
];
nixos = {
imports = defaultModules;