grimm-nixos-laptop/specific/grimm-nixos-laptop.nix

18 lines
361 B
Nix

{ pkgs, ... }: {
imports = [ # Include the results of the hardware scan.
./grimm-nixos-laptop-hardware.nix
];
age.identityPaths = [ "/home/grimmauld/.ssh/id_rsa" ];
networking.hostName = "grimmauld-nixos";
environment.sessionVariables = {
OMP_NUM_THREADS = "12";
};
system.stateVersion = "23.05";
grimmShared.gaming = true;
}