Files
nixfiles/user.nix
T
Emma Thorpe 44da0fbd49 feat: initial commit
add initial NixOS Configuration to git
2025-03-16 15:30:13 +00:00

19 lines
385 B
Nix

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