21 lines
623 B
Nix
21 lines
623 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
|
|
{
|
|
#config.microsoft-surface.ipts.enable = true;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|