cleanup by gurjaka

This commit is contained in:
2025-11-19 20:52:22 +01:00
parent 828491a083
commit 63fe9b4ac9
5 changed files with 70 additions and 67 deletions

View File

@@ -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;
};
}