Phrasing
This commit is contained in:
parent
77c1b721bb
commit
45a204256a
1 changed files with 4 additions and 2 deletions
|
@ -30,11 +30,13 @@
|
||||||
beefcake = inputs.nixpkgs.lib.nixosSystem {
|
beefcake = inputs.nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = let
|
||||||
|
ald = inputs."api.lyte.dev";
|
||||||
|
in [
|
||||||
./machines/beefcake.nix
|
./machines/beefcake.nix
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
inputs."api.lyte.dev".nixosModules."api.lyte.dev"
|
ald.nixosModules."api.lyte.dev"
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue