From 4525ac95a4cf0576669772308c195ff3fef7d15e Mon Sep 17 00:00:00 2001 From: Don Harper Date: Thu, 16 Feb 2023 07:09:47 -0600 Subject: [PATCH] workstation | add vicky.nix --- workstation/vicky.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 workstation/vicky.nix diff --git a/workstation/vicky.nix b/workstation/vicky.nix new file mode 100644 index 0000000..dd8a5db --- /dev/null +++ b/workstation/vicky.nix @@ -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"; + }; +}