1
1
Fork 0

Formatting

main
Bill Ewanick 2025-07-20 16:42:06 -04:00
parent 5c9eabcebd
commit f8cbde73b1
1 changed files with 16 additions and 10 deletions

View File

@ -15,21 +15,27 @@
# nixpkgs.follows = "emanote/nixpkgs"; # nixpkgs.follows = "emanote/nixpkgs";
}; };
outputs = inputs@{ self, nixpkgs, emanote, ... }: outputs =
inputs@{
self,
nixpkgs,
emanote,
...
}:
{ {
nixosConfigurations.linode-nixos = nixosConfigurations.linode-nixos = nixpkgs.lib.nixosSystem {
nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs emanote; };
specialArgs = { inherit inputs emanote; }; modules = [
modules = [ ./server-config/configuration.nix
./server-config/configuration.nix
./nixos-apps ./nixos-apps
]; ];
}; };
hydraJobs = { hydraJobs = {
inherit (self) inherit (self)
nixosConfigurations; nixosConfigurations
;
}; };
}; };
} }