172 lines
4.5 KiB
Nix
172 lines
4.5 KiB
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
|
|
imports = [
|
|
inputs.hyprland.homeManagerModules.default
|
|
./gui
|
|
./tui
|
|
./cli
|
|
./services
|
|
./other
|
|
];
|
|
|
|
config = {
|
|
programs = {
|
|
home-manager.enable = true;
|
|
direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
};
|
|
|
|
home = {
|
|
username = "jacek";
|
|
homeDirectory = "/home/jacek";
|
|
packages = let
|
|
hyprcontrib = inputs.hyprcontrib.packages.${pkgs.system};
|
|
shadower = inputs.shadower.packages.${pkgs.system};
|
|
nix-gaming = inputs.nix-gaming.packages.${pkgs.system};
|
|
fenix = inputs.fenix.packages.${pkgs.system};
|
|
nixpkgs-wayland = inputs.nixpkgs-wayland.packages.${pkgs.system};
|
|
in with pkgs; [
|
|
git
|
|
librewolf-wayland
|
|
keepassxc
|
|
exa
|
|
ripgrep
|
|
libnotify
|
|
rofi-wayland
|
|
rofi-calc
|
|
webcord-vencord
|
|
session-desktop
|
|
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
|
|
easyeffects
|
|
fcitx5
|
|
fcitx5-gtk
|
|
fcitx5-skk
|
|
fcitx5-configtool
|
|
firejail
|
|
helix
|
|
lbry
|
|
libreoffice-fresh
|
|
minetest
|
|
airshipper
|
|
onionshare-gui
|
|
prismlauncher
|
|
qbittorrent
|
|
retroarchFull
|
|
ventoy-full
|
|
zathura
|
|
zellij
|
|
nodejs
|
|
unzip
|
|
cmake
|
|
gcc
|
|
sway
|
|
caprine-bin
|
|
libsForQt5.kdenlive
|
|
telegram-desktop
|
|
waypipe
|
|
trash-cli
|
|
bibata-cursors
|
|
nixpkgs-wayland.swww
|
|
opentabletdriver
|
|
networkmanagerapplet
|
|
nixpkgs-wayland.wl-clipboard
|
|
nixpkgs-wayland.wlsunset
|
|
xdg-utils
|
|
hyprpicker
|
|
hyprcontrib.hyprprop
|
|
hyprcontrib.grimblast
|
|
shadower.shadower
|
|
pamixer
|
|
brightnessctl
|
|
dig
|
|
bottles
|
|
lutris
|
|
brave
|
|
|
|
nodePackages_latest.pnpm
|
|
nodePackages_latest.prisma
|
|
prisma-engines
|
|
openssl
|
|
pkg-config
|
|
docker
|
|
docker-compose
|
|
postgresql
|
|
|
|
(nix-gaming.osu-stable.override {
|
|
tricks = [ "gdiplus" "dotnet40" "cjkfonts" ];
|
|
})
|
|
|
|
nix-gaming.osu-lazer-bin
|
|
swappy
|
|
nixpkgs-wayland.imv
|
|
pcmanfm
|
|
anytype
|
|
xdg-ninja
|
|
auto-cpufreq
|
|
gnupg
|
|
pinentry-qt
|
|
age
|
|
rage
|
|
fd
|
|
udisks
|
|
ffmpeg
|
|
xdg-desktop-portal-gtk
|
|
ghc
|
|
ghcid
|
|
cabal-install
|
|
yt-dlp
|
|
filelight
|
|
(fenix.complete.withComponents [
|
|
"cargo"
|
|
"clippy"
|
|
"rust-src"
|
|
"rustc"
|
|
"rustfmt"
|
|
])
|
|
wayland
|
|
showmethekey
|
|
polkit
|
|
libsForQt5.polkit-kde-agent
|
|
asciinema
|
|
asciinema-agg
|
|
du-dust
|
|
mullvad-vpn
|
|
appimage-run
|
|
file
|
|
virt-manager
|
|
weechat
|
|
flowblade
|
|
hyfetch
|
|
git-annex
|
|
gamemode
|
|
];
|
|
|
|
stateVersion = lib.mkDefault "23.11";
|
|
};
|
|
};
|
|
}
|