26 lines
590 B
Nix
26 lines
590 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../common/configuration.nix ./hardware-configuration.nix ];
|
|
|
|
networking.hostName = "ahrc-laptop";
|
|
|
|
console.keyMap = "fr-pc";
|
|
|
|
environment.systemPackages = with pkgs; [ powertop brightnessctl ];
|
|
|
|
services.libinput.enable = true;
|
|
services.power-profiles-daemon.enable = true;
|
|
|
|
programs.bash.promptInit = ''
|
|
if [ "$(whoami)" = root ]; then
|
|
color=31
|
|
else
|
|
color=32
|
|
user='\u@'
|
|
fi
|
|
PS1="\[\033[0m\](\[\033[1;''${color}m\]''${user}\h\[\033[0m\] \[\033[1;34m\]\W\[\033[0m\])\\$ "
|
|
'';
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|