niksos/homes/jacek/default.nix

135 lines
3.4 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
./services
./other
2023-07-13 12:49:20 +02:00
];
2023-07-07 20:13:49 +02:00
2023-07-13 12:49:20 +02:00
config = {
programs = {
home-manager.enable = true;
2023-07-20 21:03:58 +02:00
direnv = {
enable = true;
nix-direnv.enable = true;
};
2023-07-07 20:13:49 +02:00
};
2023-07-13 12:49:20 +02:00
home = {
username = "jacek";
homeDirectory = "/home/jacek";
2023-07-20 23:48:46 +02:00
packages = let
hyprcontrib = inputs.hyprcontrib.packages.${pkgs.system};
shadower = inputs.shadower.packages.${pkgs.system};
nix-gaming = inputs.nix-gaming.packages.${pkgs.system};
in with pkgs; [
2023-07-13 12:49:20 +02:00
git
librewolf-wayland
foot
keepassxc
exa
ripgrep
dunst
libnotify
rofi-wayland
rofi-calc
mpv
webcord-vencord
session-desktop
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
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.kdenlive
telegram-desktop
waypipe
2023-07-21 17:54:06 +02:00
swaylock-effects
2023-07-13 12:49:20 +02:00
trash-cli
bibata-cursors
2023-07-20 00:06:31 +02:00
swww
opentabletdriver
networkmanagerapplet
wl-clipboard
wlsunset
xdg-utils
hyprpicker
2023-07-20 23:48:46 +02:00
hyprcontrib.hyprprop
hyprcontrib.grimblast
shadower.shadower
2023-07-20 19:11:30 +02:00
pamixer
brightnessctl
dig
2023-07-20 21:03:58 +02:00
bottles
lutris
brave
nodePackages_latest.pnpm
2023-07-20 23:48:46 +02:00
nodePackages_latest.prisma
prisma-engines
openssl
pkg-config
nix-gaming.wine-osu
nix-gaming.osu-stable
nix-gaming.osu-lazer-bin
swappy
2023-07-21 07:25:07 +02:00
imv
pcmanfm
2023-07-21 17:54:21 +02:00
anytype
2023-07-22 00:15:42 +02:00
xdg-ninja
auto-cpufreq
2023-07-13 12:49:20 +02:00
];
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
};
}