tests: Add a test for the home-manager module (#901)

This commit is contained in:
traxys 2024-01-06 17:31:17 +01:00 committed by GitHub
parent 55745158c2
commit 96cdbc8177
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 63 additions and 0 deletions

View file

@ -1,4 +1,8 @@
{
inputs,
self,
...
}: {
perSystem = {
pkgs,
config,
@ -27,6 +31,14 @@
inherit pkgs;
inherit (pkgs) lib;
};
home-manager =
(import ../tests/modules/hm.nix {
inherit pkgs;
inherit (inputs) home-manager;
nixvim = self;
})
.activationPackage;
};
};
}