18 lines
403 B
Nix
18 lines
403 B
Nix
{pkgs, ...}: let
|
|
user = "cerberus";
|
|
in {
|
|
imports = [
|
|
(import ./zsh.nix {inherit pkgs user;})
|
|
./zoxide.nix
|
|
(import ./packages.nix {inherit pkgs user;})
|
|
];
|
|
|
|
# Define user account and dont forget to set a password with 'passwd'
|
|
users.users."${user}" = {
|
|
isNormalUser = true;
|
|
description = "cerberus";
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
shell = pkgs.zsh;
|
|
};
|
|
}
|