From 08062d364056ba5b6f1e48d940be478ac50f6a17 Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Sat, 9 Mar 2024 13:34:31 -0800 Subject: Add initial flake configuration --- ginaz/flake.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ginaz/flake.nix (limited to 'ginaz/flake.nix') diff --git a/ginaz/flake.nix b/ginaz/flake.nix new file mode 100644 index 0000000..6709960 --- /dev/null +++ b/ginaz/flake.nix @@ -0,0 +1,14 @@ +{ + description = "nipsy's NixOS configuration"; + + inputs = { + nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable; + }; + + outputs = { self, nixpkgs }: { + nixosConfigurations.ginaz = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ ./configuration.nix ]; + }; + }; +} -- cgit v1.2.3