workstation | add vicky.nix
This commit is contained in:
parent
0d46b6d22f
commit
4525ac95a4
1 changed files with 20 additions and 0 deletions
20
workstation/vicky.nix
Normal file
20
workstation/vicky.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue