nixos-config/ahrc-pc/configuration.nix

25 lines
535 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ../common/configuration.nix ./hardware-configuration.nix ];
networking.hostName = "ahrc-pc";
console.keyMap = "us";
services.openssh.enable = true;
environment.systemPackages = with pkgs; [ cryptsetup ];
programs.bash.promptInit = ''
if [ "$(whoami)" = root ]; then
color=31
else
color=35
user='\u@'
fi
PS1="\[\033[0m\][\[\033[1;''${color}m\]''${user}\h\[\033[0m\] \[\033[1;34m\]\W\[\033[0m\]]\\$ "
'';
system.stateVersion = "24.05";
}