nixos-config/hosts/pennsardin/configuration.nix

16 lines
243 B
Nix
Raw Permalink Normal View History

2025-08-07 01:32:02 +02:00
{ config, pkgs, ... }:
{
networking.hostName = "pennsardin";
time.timeZone = "Europe/Paris";
users.users.toto = {
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
};
services.xserver.enable = true;
}