Formatting
parent
5c9eabcebd
commit
f8cbde73b1
14
flake.nix
14
flake.nix
|
@ -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
|
||||||
|
;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue