nix/laptop/flake.nix
2023-06-30 18:46:47 +09:00

14 lines
No EOL
307 B
Nix

{
inputs = {
nixpngs.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 ];
};
};
}