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
bind
btop
comma
git
lazydocker
micro

View file

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

View file

@ -3,6 +3,7 @@
{
environment.sessionVariables = rec {
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 = {
@ -14,6 +15,6 @@
"adbusers"
];
};
home-manager.users.user = import ../../../users/desktops/user.nix;
}