This commit is contained in:
Sandro - 2022-07-10 19:34:06 +02:00
parent 71dece2882
commit af5384a2de
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 5 additions and 4 deletions

View File

@ -23,10 +23,11 @@
self.lib.nixosSystem { self.lib.nixosSystem {
inherit system; inherit system;
modules = [ self.nixosModule ]; modules = [ self.nixosModule ];
specialArgs.hostName = name; specialArgs = {
specialArgs.lib = self.lib; hostName = name;
specialArgs.self = self; inherit (self) lib;
specialArgs.inputs = inputs; inherit inputs self;
};
}; };
in { in {
# Config, and utilities # Config, and utilities