thrall: Combine two inlined modules
This commit is contained in:
parent
a8cbaa1647
commit
f8411ac7e9
1 changed files with 2 additions and 5 deletions
|
|
@ -47,16 +47,13 @@
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
({ inputs, ... }: {
|
({ inputs, lib, ... }: {
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
overlays = with inputs; [ emacs.overlay ];
|
overlays = with inputs; [ emacs.overlay ];
|
||||||
};
|
};
|
||||||
|
nix.registry = lib.mapAttrs (_: value: { flake = value; }) inputs;
|
||||||
})
|
})
|
||||||
{
|
|
||||||
nix.registry =
|
|
||||||
nixpkgs.lib.mapAttrs (_: value: { flake = value; }) inputs;
|
|
||||||
}
|
|
||||||
snm.nixosModule
|
snm.nixosModule
|
||||||
./modules/security.nix
|
./modules/security.nix
|
||||||
./hosts/thrall
|
./hosts/thrall
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue