15 lines
No EOL
361 B
Nix
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 ];
|
|
};
|
|
};
|
|
} |