first commit
This commit is contained in:
commit
9532c89e63
3 changed files with 57 additions and 0 deletions
15
hosts/pennsardin/configuration.nix
Normal file
15
hosts/pennsardin/configuration.nix
Normal 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;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue