bash_aliases | fix && build
This commit is contained in:
parent
854542f5f0
commit
f72cdf4cf6
4 changed files with 1 additions and 4 deletions
20
user/vicky/default.nix
Normal file
20
user/vicky/default.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