FrameworkNix/hertog/home.nix

71 lines
1.2 KiB
Nix

{ pkgs, inputs, nix-colors, ... }:
{
programs.home-manage.enable = true;
imports = [
inputs.nix-colors.homeManagerModules.default
../theming/colorScheme.nix
../programs/sway
../programs/dconf.nix
../programs/zsh.nix
../programs/git.nix
../programs/firefox.nix
../programs/obs.nix
];
home = {
stateVersion = "23.05";
username = "hertog";
homeDirectory = "/home/hertog";
packages = with pkgs; [
# Base
epiphany
thunderbird
deltachat-desktop
vlc
bottles
pavucontrol
qbittorrent
floorp
# Office
slack
onlyoffice-bin
marker
# Security
keepassxc
# Entertainment
cartridges
prismlauncher-qt5
qFlipper
protonup-qt
stremio
spotify
r2modman
# Art
inkscape
gimp
loupe
# Shell
thefuck
pmbootstrap
wally-cli
# Programming
godot_4
unityhub
lapce
signal-desktop
blanket
bookworm
retroarch
libretro.flycast
endeavour
R
rstudio
qemu
qemu_kvm
nixos-generators
];
};
}