fix package imports
This commit is contained in:
parent
65e0b4932e
commit
635b33eb97
21 changed files with 60 additions and 51 deletions
|
@ -14,7 +14,7 @@ in
|
|||
|
||||
config = mkIf cfg.enable
|
||||
{
|
||||
user.packages = attrValues {
|
||||
home-manager.users.${user}.home.packages = attrValues {
|
||||
inherit (pkgs) vesktop teamspeak_client;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -14,15 +14,16 @@ in
|
|||
|
||||
config = mkIf cfg.enable
|
||||
{
|
||||
# user.packages = attrValues {
|
||||
# inherit (pkgs) thunderbird;
|
||||
# };
|
||||
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
home-manager.users.${user}.accounts.email.accounts = {
|
||||
home-manager.users.${user} = {
|
||||
home.packages = attrValues {
|
||||
inherit (pkgs) thunderbird;
|
||||
};
|
||||
|
||||
accounts.email.accounts = {
|
||||
kruining = {
|
||||
primary = true;
|
||||
address = "chris@kruinin.eu";
|
||||
|
@ -47,5 +48,6 @@ in
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ in
|
|||
|
||||
config = mkIf cfg.enable
|
||||
{
|
||||
user.packages = attrValues {
|
||||
home-manager.users.${user}.home.packages = attrValues {
|
||||
inherit (pkgs) onlyoffice-bin;
|
||||
};
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ in
|
|||
|
||||
config = mkIf cfg.enable
|
||||
{
|
||||
user.packages = attrValues {
|
||||
home-manager.users.${user}.home.packages = attrValues {
|
||||
inherit (pkgs) bitwarden-desktop;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -26,7 +26,7 @@ in
|
|||
|
||||
security.polkit.enable = true;
|
||||
|
||||
user.packages = with pkgs; [
|
||||
home-manager.users.${user}.home.packages = with pkgs; [
|
||||
obs-studio
|
||||
obs-studio-plugins.wlrobs
|
||||
obs-studio-plugins.obs-backgroundremoval
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue