initial cloud config

This commit is contained in:
Grigory Shipunov 2025-01-02 18:23:46 +00:00
parent 3de1ca400c
commit 93a64e8816
6 changed files with 81 additions and 2 deletions

View file

@ -34,12 +34,12 @@
outputs =
inputs@{ self
, flake-utils
, lanzaboote
, microvm
, nixos-hardware
, nixpkgs-stable
, nixpkgs-unstable
, sops-nix
, nixos-hardware
, lanzaboote
, ...
}:
@ -68,6 +68,15 @@
./modules/chromium.nix
];
};
cloud = nixpkgs-stable.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
moudles = [
sops-nix.nixosModules.sops
./hosts/cloud
];
};
};
};
}