nix/laptop/flake.nix
2023-06-30 18:41:45 +09:00

9 lines
No EOL
235 B
Nix

{
outputs = { self, nixpkgs }: {
# replace 'joes-desktop' with your hostname here.
nixosConfigurations.nixos-p1 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
};
}