fix submodule

This commit is contained in:
2025-05-21 19:53:56 +01:00
parent 04929cacfc
commit efaf003462
6 changed files with 157 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
{ config, pkgs, inputs, lib, ... }:
{
programs.zsh.enable = true;
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.legcord
#pkgs.plex-desktop
#pkgs.plexamp
];
};
programs.firefox = lib.mkIf(config.features.swayDesktop.enable == true) {
enable = true;
};
programs.thunderbird = lib.mkIf(config.features.swayDesktop.enable == true) {
enable = true;
};
}