wip myData

compress-drv-tests
Motiejus Jakštys 2023-04-05 09:15:02 +03:00
parent 081e47dc91
commit 87c748146c
3 changed files with 11 additions and 1 deletions

View File

@ -8,4 +8,8 @@ This is an attempt to configure my NixOS servers with [krops][1]. Usage:
There is probably nothing to look at here.
Upcoming flakes:
$ nix build .#deploy.nodes.hel1-a.profiles.system.path
[1]: https://cgit.krebsco.de/krops/about/

3
data.nix Normal file
View File

@ -0,0 +1,3 @@
{
pubkeys = { }; # TODO
}

View File

@ -15,6 +15,7 @@
deploy-rs.inputs.utils.follows = "flake-utils";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
@ -22,7 +23,9 @@
nixpkgs,
deploy-rs,
flake-utils,
}:
}: let
myData = import ./data.nix;
in
{
nixosConfigurations.hel1-a = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";