Files
nixfiles/user.nix
T

19 lines
385 B
Nix
Raw Normal View History

2025-03-16 15:30:13 +00:00
{ config, pkgs, lib, ... }:
{
users.users.emmathorpe = {
isNormalUser = true;
home = "/home/emmathorpe";
description = "Emma Thorpe";
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
packages = lib.mkIf (config.features.swayDesktop.enable == true) [
pkgs.discord
];
};
programs.firefox = lib.mkIf(config.features.swayDesktop.enable == true) {
enable = true;
};
}