From 4115236c09270bd8822f618f4dd3b3f5d9c175c5 Mon Sep 17 00:00:00 2001 From: iFargle Date: Fri, 30 Jun 2023 18:41:45 +0900 Subject: [PATCH] Add flake --- laptop/flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 laptop/flake.nix diff --git a/laptop/flake.nix b/laptop/flake.nix new file mode 100644 index 00000000..51ffa252 --- /dev/null +++ b/laptop/flake.nix @@ -0,0 +1,9 @@ +{ + outputs = { self, nixpkgs }: { + # replace 'joes-desktop' with your hostname here. + nixosConfigurations.nixos-p1 = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ ./configuration.nix ]; + }; + }; +} \ No newline at end of file