cleanup by gurjaka
This commit is contained in:
@@ -1,14 +1,16 @@
|
||||
{config, pkgs, ...}:
|
||||
|
||||
{
|
||||
{pkgs, ...}: let
|
||||
user = "cerberus";
|
||||
in {
|
||||
imports = [
|
||||
./zsh.nix
|
||||
(import ./zsh.nix {inherit pkgs user;})
|
||||
./zoxide.nix
|
||||
];
|
||||
|
||||
# Define user account and dont forget to set a password with 'passwd'
|
||||
users.users.cerberus = {
|
||||
isNormalUser = true;
|
||||
users.users."${user}" = {
|
||||
isNormalUser = true;
|
||||
description = "cerberus";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
extraGroups = ["networkmanager" "wheel"];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user