Setup home laptop

This commit is contained in:
Pierre Martin
2018-11-10 14:20:09 +01:00
parent 0587e83c41
commit 8c4a3ff1e5
3 changed files with 58 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
{ pkgs, ... }:
{
i18n = {
consoleKeyMap = "fr";
};
users.users.celine = {
isNormalUser = true;
home = "/home/celine";
shell = pkgs.zsh;
extraGroups = [ "audio" "wheel" "networkmanager" ];
};
services.xserver.desktopManager.gnome3.enable = true;
}