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,10 +15,15 @@
# 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
@ -29,7 +34,8 @@
hydraJobs = { hydraJobs = {
inherit (self) inherit (self)
nixosConfigurations; nixosConfigurations
;
}; };
}; };
} }