2023-06-30 11:41:45 +02:00
|
|
|
{
|
2023-06-30 11:48:25 +02:00
|
|
|
description = "Bootstrap Nix Flake for my laptop";
|
2023-06-30 11:46:47 +02:00
|
|
|
|
|
|
|
inputs = {
|
2023-06-30 11:48:25 +02:00
|
|
|
nixpkgs.url = "github:nixos/nixpgs/nixos-23.05";
|
2023-06-30 11:46:47 +02:00
|
|
|
};
|
|
|
|
|
2023-06-30 11:41:45 +02:00
|
|
|
outputs = { self, nixpkgs }: {
|
|
|
|
# replace 'joes-desktop' with your hostname here.
|
|
|
|
nixosConfigurations.nixos-p1 = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
2023-06-30 11:55:36 +02:00
|
|
|
# modules = [ ./configuration.nix ];
|
2023-06-30 11:41:45 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|