nix/touchscreen/flake.nix

20 lines
575 B
Nix

{
description = "NixOS configuration with flakes";
inputs.nixos-hardware.url = "github:NixOS/nixos-hardware/master";
outputs = { self, nixpkgs, nixos-hardware }: {
# replace <your-hostname> with your actual hostname
nixosConfigurations.nixpengames = nixpkgs.lib.nixosSystem {
# ...
system = "x86_64-linux";
modules = [
# ...
# add your model from this list: https://github.com/NixOS/nixos-hardware/blob/master/flake.nix
./configuration.nix
nixos-hardware.nixosModules.microsoft-surface-common
{
}
];
};
};
}