Some packages

This commit is contained in:
baduhai 2023-02-03 18:34:35 -03:00
parent 9c15c78d6e
commit 5ee9d8369f
3 changed files with 5 additions and 2 deletions

View file

@ -7,6 +7,7 @@
any-nix-shell any-nix-shell
bind bind
btop btop
comma
git git
lazydocker lazydocker
micro micro

View file

@ -32,6 +32,7 @@
logseq logseq
mangohud mangohud
mpv mpv
# nix-init
obs-studio obs-studio
obs-studio-plugins.obs-vkcapture obs-studio-plugins.obs-vkcapture
p7zip p7zip
@ -56,7 +57,7 @@
wezterm wezterm
# Package overrides # Package overrides
(appimage-run.override { (appimage-run.override {
extraPkgs = pkgs: [ ]; extraPkgs = pkgs: [ libthai ];
}) })
# Packages from 3rd party overlays # Packages from 3rd party overlays
agenix agenix

View file

@ -3,6 +3,7 @@
{ {
environment.sessionVariables = rec { environment.sessionVariables = rec {
KDEHOME = "$XDG_CONFIG_HOME/kde4"; # Stops kde from placing a .kde4 folder in the home dir KDEHOME = "$XDG_CONFIG_HOME/kde4"; # Stops kde from placing a .kde4 folder in the home dir
NIXOS_OZONE_WL = "1"; # Forces chromium and most electron apps to run in wayland
}; };
users.users.user = { users.users.user = {
@ -14,6 +15,6 @@
"adbusers" "adbusers"
]; ];
}; };
home-manager.users.user = import ../../../users/desktops/user.nix; home-manager.users.user = import ../../../users/desktops/user.nix;
} }