Files
nixfiles/emmathorpe/user.nix
T

28 lines
488 B
Nix
Raw Normal View History

2026-06-02 07:40:25 -07:00
{
config,
pkgs,
inputs,
lib,
...
}:
2025-05-21 19:53:56 +01:00
{
2026-06-02 07:40:25 -07:00
programs.zsh.enable = true;
users.users.emmathorpe = {
isNormalUser = true;
home = "/home/emmathorpe";
description = "Emma Thorpe";
extraGroups = [
"wheel"
"docker"
];
shell = pkgs.zsh;
};
programs.firefox = lib.mkIf (config.features.swayDesktop.enable == true) {
enable = true;
};
programs.thunderbird = lib.mkIf (config.features.swayDesktop.enable == true) {
enable = true;
};
2025-05-21 19:53:56 +01:00
}