Add flake

This commit is contained in:
iFargle 2023-06-30 18:41:45 +09:00
parent 6c6c06acd9
commit 4115236c09

9
laptop/flake.nix Normal file
View file

@ -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 ];
};
};
}