9 lines
235 B
Nix
9 lines
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 ];
|
||
|
};
|
||
|
};
|
||
|
}
|