first commit

This commit is contained in:
Lomig 2025-08-07 01:32:02 +02:00
commit 9532c89e63
3 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
networking.hostName = "pennsardin";
time.timeZone = "Europe/Paris";
users.users.toto = {
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
};
services.xserver.enable = true;
}