From 143c6f152e96214b4c75c31047a1eda0cd51513a Mon Sep 17 00:00:00 2001 From: Aria Date: Tue, 5 Dec 2023 20:53:17 +0000 Subject: own vps --- nix-personal/flake.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 nix-personal/flake.nix (limited to 'nix-personal/flake.nix') diff --git a/nix-personal/flake.nix b/nix-personal/flake.nix new file mode 100644 index 0000000..946e3bb --- /dev/null +++ b/nix-personal/flake.nix @@ -0,0 +1,19 @@ +{ + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11"; + inputs.disko.url = "github:nix-community/disko"; + inputs.disko.inputs.nixpkgs.follows = "nixpkgs"; + + outputs = { + nixpkgs, + disko, + ... + }: { + nixosConfigurations.primary = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + disko.nixosModules.disko + ./configuration.nix + ]; + }; + }; +} -- cgit v1.2.3