niksos/homes/jacek/default.nix

99 lines
2.3 KiB
Nix

{
config,
inputs,
lib,
pkgs,
...
}: {
imports = [
inputs.hyprland.homeManagerModules.default
./gui
./tui
./cli
];
config = {
programs = {
home-manager.enable = true;
};
home = {
username = "jacek";
# TODO fix this
homeDirectory = lib.mkForce "/home/jacek";
packages = with pkgs; [
git
librewolf-wayland
firefox-wayland
foot
keepassxc
exa
ripgrep
dunst
libnotify
rofi-wayland
rofi-calc
mpv
webcord-vencord
session-desktop
osu-lazer-bin
oppai-ng
signal-desktop-beta
schildichat-desktop
obs-studio
heroic
steam
ungoogled-chromium
amdgpu_top
tor-browser-bundle-bin
mullvad-browser
thunderbird
telegram-desktop
livecaptions
gimp
mullvad-vpn
helvum
ddccontrol
ddccontrol-db
bluez
blueman
btop
easyeffects
fcitx5
fcitx5-gtk
fcitx5-skk
firejail
helix
lbry
libreoffice-fresh
minetest
airshipper
onionshare-gui
prismlauncher
qbittorrent
retroarchFull
ventoy-full
zathura
zellij
cargo
rustc
nodejs
unzip
cmake
gcc
sway
caprine-bin
libsForQt5.qt5ct
libsForQt5.kdenlive
telegram-desktop
waypipe
swaylock
trash-cli
bibata-cursors
];
stateVersion = lib.mkDefault "23.11";
};
};
}