Compare commits
5 commits
9360c07a60
...
2d24794ea1
Author | SHA1 | Date | |
---|---|---|---|
2d24794ea1 | |||
63de62454c | |||
45830f76f9 | |||
2a47f10731 | |||
1da72f7350 |
3 changed files with 14 additions and 9 deletions
|
@ -1,5 +1,9 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
home.packages = with pkgs.unstable; [
|
home.packages = [
|
||||||
(jetbrains.plugins.addPlugins jetbrains.idea-ultimate ["ideavim"])
|
(pkgs.unstable.jetbrains.plugins.addPlugins pkgs.unstable.jetbrains.idea-ultimate ["ideavim"])
|
||||||
];
|
];
|
||||||
|
home.sessionVariables = {
|
||||||
|
JAVA_HOME = "${pkgs.openjdk17}/lib/openjdk";
|
||||||
|
LD_LIBRARY_PATH = "${pkgs.libGL}/lib:${pkgs.gtk3}/lib:${pkgs.glib.out}/lib:${pkgs.xorg.libXtst}/lib";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,4 @@
|
||||||
{
|
{inputs, ...}: {
|
||||||
inputs,
|
|
||||||
pkgs,
|
|
||||||
vars,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [inputs.flatpaks.homeManagerModules.default];
|
imports = [inputs.flatpaks.homeManagerModules.default];
|
||||||
services.flatpak = {
|
services.flatpak = {
|
||||||
remotes.flathub = "https://flathub.org/repo/flathub.flatpakrepo";
|
remotes.flathub = "https://flathub.org/repo/flathub.flatpakrepo";
|
||||||
|
@ -11,6 +6,7 @@
|
||||||
"flathub:app/us.zoom.Zoom//stable"
|
"flathub:app/us.zoom.Zoom//stable"
|
||||||
"flathub:app/com.discordapp.Discord//stable"
|
"flathub:app/com.discordapp.Discord//stable"
|
||||||
"flathub:app/md.obsidian.Obsidian//stable"
|
"flathub:app/md.obsidian.Obsidian//stable"
|
||||||
|
"flathub:app/com.github.iwalton3.jellyfin-media-player//stable"
|
||||||
];
|
];
|
||||||
overrides = {
|
overrides = {
|
||||||
global = {
|
global = {
|
||||||
|
@ -27,6 +23,11 @@
|
||||||
"system-bus"
|
"system-bus"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
"com.github.iwalton3.jellyfin-media-player" = {
|
||||||
|
environment = {
|
||||||
|
QT_XCB_GL_INTEGRATION = "xcb_egl";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,12 +34,12 @@
|
||||||
(with pkgs; [
|
(with pkgs; [
|
||||||
# Ignored Packages
|
# Ignored Packages
|
||||||
gnome-tour
|
gnome-tour
|
||||||
|
gedit
|
||||||
])
|
])
|
||||||
++ (with pkgs.gnome; [
|
++ (with pkgs.gnome; [
|
||||||
atomix
|
atomix
|
||||||
epiphany
|
epiphany
|
||||||
geary
|
geary
|
||||||
gedit
|
|
||||||
gnome-characters
|
gnome-characters
|
||||||
gnome-contacts
|
gnome-contacts
|
||||||
gnome-initial-setup
|
gnome-initial-setup
|
||||||
|
|
Loading…
Reference in a new issue