nix: update module

This commit is contained in:
notohh 2024-04-08 15:30:11 -04:00
parent ce29a69e08
commit 0f5a523505
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 6 additions and 3 deletions

View file

@ -60,7 +60,8 @@
])
];
};
nixosModules.default = import ./nix/module.nix inputs;
nixosModules.forcebot_rs = import ./nix/module.nix;
nixosModules.default = self.nixosModules.forcebot_rs;
RUST_BACKTRACE = 1;
RUST_SRC_PATH = "${fenix.packages.${system}.complete.rust-src}/lib/rustlib/src/rust/library";
})

View file

@ -1,6 +1,8 @@
inputs: {
lib,
{
inputs,
config,
lib,
...
}:
with lib; let
inherit (lib) types;