nix/laptop/flake.nix

14 lines
307 B
Nix
Raw Normal View History

2023-06-30 11:41:45 +02:00
{
2023-06-30 11:46:47 +02:00
inputs = {
nixpngs.url = "github:nixos/nixpgs/nixos-23.05"
};
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";
modules = [ ./configuration.nix ];
};
};
}