freddy ready for the new

This commit is contained in:
cnst
2024-08-01 19:19:20 +02:00
parent a58147df97
commit 12acb4fc47
3 changed files with 21 additions and 61 deletions

View File

@@ -0,0 +1,49 @@
{pkgs, ...}: {
home = {
username = "toothpick";
homeDirectory = "/home/toothpick";
stateVersion = "23.11";
extraOutputsToInstall = ["doc" "devdoc"];
packages = with pkgs; [
# misc.gui
virt-manager
xfce.thunar
# misc.tui
ranger
xcur2png
# misc.system
adwaita-icon-theme
egl-wayland
qt5.qtwayland
qt6.qtwayland
# thefuck
wireguard-tools
wl-clipboard
wpa_supplicant
xfce.thunar-archive-plugin
xfce.thunar-volman
];
sessionVariables = {
BROWSER = "firefox";
EDITOR = "nvim";
TERM = "foot";
QT_QPA_PLATFORM = "wayland-egl";
SDL_VIDEODRIVER = "wayland";
XDG_SESSION_TYPE = "wayland";
ELECTRON_OZONE_PLATFORM_HINT = "auto";
};
};
# disable manuals as nmd fails to build often
manual = {
html.enable = false;
json.enable = false;
manpages.enable = false;
};
# let HM manage itself when in standalone mode
programs.home-manager.enable = true;
}