Add prismlauncher

This commit is contained in:
thiloho
2023-06-05 01:08:50 +02:00
parent ae936a71e2
commit 81ea611c64

View File

@@ -48,7 +48,7 @@
}; };
# Home manager configuration # Home manager configuration
home-manager.users.thiloho = { pkgs, ... }: { home-manager.users.thiloho = { pkgs, lib, ... }: {
programs = { programs = {
helix = { helix = {
enable = true; enable = true;
@@ -111,15 +111,16 @@
gh.enable = true; gh.enable = true;
}; };
home = { home = {
stateVersion = "22.11"; stateVersion = "22.11";
packages = with pkgs; [ packages = with pkgs; [
zoom-us zoom-us
libreoffice libreoffice
google-chrome google-chrome
airshipper airshipper
]; prismlauncher
}; ];
}; };
};
system.stateVersion = "22.11"; system.stateVersion = "22.11";
} }