19 lines
412 B
Nix
19 lines
412 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ # Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
../workstation.nix
|
|
];
|
|
|
|
networking.hostName = "p14s"; # Define your hostname.
|
|
|
|
users.users.dm.extraGroups = [ "video" ];
|
|
programs.light.enable = true;
|
|
services.tlp.enable = true;
|
|
|
|
system.stateVersion = "23.05"; # Did you read the comment?
|
|
|
|
}
|