workstation | add vicky.nix

This commit is contained in:
Don Harper 2023-02-16 07:09:47 -06:00
parent 0d46b6d22f
commit 4525ac95a4

20
workstation/vicky.nix Normal file
View file

@ -0,0 +1,20 @@
{ config, pkgs, callPackage, ... }:
{
users.users.vicky = {
isNormalUser = true;
description = "Vicky Harper";
extraGroups = [ "networkmanager" "wheel" "scanner" "lp" "video" "mlocate" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINd8AdVbQQ/Fmw+b9mI8EMYqIoRkwmSwAOtmlte3incL don@loki"
];
};
services.xserver = {
enable = true;
desktopManager = {
xterm.enable = false;
xfce.enable = true;
};
displayManager.defaultSession = "xfce";
};
}