niksos/homes/jacek/default.nix

98 lines
2.2 KiB
Nix
Raw Normal View History

{
2023-07-13 12:49:20 +02:00
config,
inputs,
lib,
pkgs,
...
}: {
2023-07-13 12:49:20 +02:00
imports = [
inputs.hyprland.homeManagerModules.default
./gui
./tui
./cli
];
2023-07-07 20:13:49 +02:00
2023-07-13 12:49:20 +02:00
config = {
programs = {
home-manager.enable = true;
2023-07-07 20:13:49 +02:00
};
2023-07-13 12:49:20 +02:00
home = {
username = "jacek";
homeDirectory = "/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
];
2023-07-07 20:13:49 +02:00
2023-07-13 12:49:20 +02:00
stateVersion = lib.mkDefault "23.11";
};
2023-07-07 20:13:49 +02:00
};
}