nixos-flake/hosts/p14s/configuration.nix

24 lines
554 B
Nix

{ config, pkgs, ... }:
{
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../common.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?
}