Files
cnix/home/profiles/adam/default.nix
2024-08-17 18:28:42 +02:00

55 lines
1.0 KiB
Nix

{pkgs, ...}: {
imports = [
./modules.nix
./git.nix
./shell.nix
];
home = {
username = "adam";
homeDirectory = "/home/adam";
stateVersion = "23.11";
extraOutputsToInstall = ["doc" "devdoc"];
packages = with pkgs; [
# misc.gui
virt-manager
xfce.thunar
# misc.tui
ranger
xcur2png
# misc.system
brightnessctl
bun
adwaita-icon-theme
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";
SDL_VIDEODRIVER = "wayland";
XDG_SESSION_TYPE = "wayland";
};
};
# 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;
}