test
This commit is contained in:
parent
ba6080ffaf
commit
774c9d9dfe
1 changed files with 5 additions and 2 deletions
|
@ -1,11 +1,14 @@
|
|||
{ config, desktop, lib, pkgs, ... }: {
|
||||
{ config, desktop, lib, pkgs, ... }:
|
||||
let
|
||||
ifExists = groups: builtins.filter (group: builtins.hasAttr group config.users.groups) groups;
|
||||
in {
|
||||
# Define a user account.
|
||||
imports = [ ] ++ lib.optional (builtins.isString desktop) ./desktop.nix;
|
||||
users.users.albert = {
|
||||
isNormalUser = true;
|
||||
description = "Albert J. Copeland";
|
||||
# video is required for the "light" command to work
|
||||
extraGroups = [ "networkmanager" "wheel" ] ++ ifExists [ "video" ];
|
||||
extraGroups = [ "networkmanager" "wheel" ] ++ ifExists [ "video" ];
|
||||
hashedPassword = "$y$j9T$wKLsIWaA4Gf63RvjedwLJ0$EHKL6BBJV0CAxEKcHHjaBqW085KJ/MGvmbyWzmcWOy6";
|
||||
packages = [ pkgs.home-manager ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue