diff options
author | Aria <me@aria.rip> | 2023-12-05 20:53:17 +0000 |
---|---|---|
committer | Aria <me@aria.rip> | 2023-12-05 20:53:17 +0000 |
commit | 143c6f152e96214b4c75c31047a1eda0cd51513a (patch) | |
tree | d721752bac45d0993ef24aa7cfcccdd19aae1638 /nix-personal/flake.nix | |
parent | 318522a2613ec7242b2559be66b5edf466a2e5ef (diff) |
own vps
Diffstat (limited to 'nix-personal/flake.nix')
-rw-r--r-- | nix-personal/flake.nix | 19 |
1 files changed, 19 insertions, 0 deletions
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 + ]; + }; + }; +} |