nix/laptop/flake.nix
2023-06-30 18:48:25 +09:00

15 lines
No EOL
361 B
Nix

{
description = "Bootstrap Nix Flake for my laptop";
inputs = {
nixpkgs.url = "github:nixos/nixpgs/nixos-23.05";
};
outputs = { self, nixpkgs }: {
# replace 'joes-desktop' with your hostname here.
nixosConfigurations.nixos-p1 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
};
}