Files

19 lines
418 B
Nix
Raw Permalink Normal View History

2025-11-19 20:52:22 +01:00
{pkgs, ...}: let
user = "cerberus";
in {
2025-11-19 19:30:42 +01:00
imports = [
2025-11-19 20:52:22 +01:00
(import ./zsh.nix {inherit pkgs user;})
./zoxide.nix
2025-11-19 21:45:15 +01:00
(import ./packages.nix {inherit pkgs user;})
2025-11-20 17:16:04 +01:00
./nvim.nix
2025-11-19 19:30:42 +01:00
];
2025-11-19 20:52:22 +01:00
2025-11-19 19:30:42 +01:00
# Define user account and dont forget to set a password with 'passwd'
2025-11-19 20:52:22 +01:00
users.users."${user}" = {
isNormalUser = true;
2025-11-19 19:30:42 +01:00
description = "cerberus";
2025-11-19 20:52:22 +01:00
extraGroups = ["networkmanager" "wheel"];
2025-11-19 19:30:42 +01:00
shell = pkgs.zsh;
};
}