64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.nvf.homeManagerModules.default
|
|
inputs.nix-index-database.hmModules.nix-index
|
|
];
|
|
|
|
# Some info
|
|
home.username = "crony";
|
|
home.homeDirectory = "/home/crony";
|
|
|
|
# PACKAGES
|
|
home.packages = with pkgs; [
|
|
keepassxc
|
|
tutanota-desktop
|
|
spice-gtk
|
|
vesktop
|
|
piper
|
|
heroic
|
|
prismlauncher
|
|
protonup-qt
|
|
protontricks
|
|
jellyfin-mpv-shim
|
|
itch
|
|
wineWowPackages.staging
|
|
rpcs3
|
|
osu-lazer-bin
|
|
overskride
|
|
delfin
|
|
];
|
|
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles.default.isDefault = true;
|
|
};
|
|
|
|
# Install foot
|
|
programs.foot.enable = true;
|
|
|
|
# Install imv
|
|
programs.imv.enable = true;
|
|
|
|
# Enable syncthing
|
|
services.syncthing.enable = true;
|
|
|
|
# Default environmental variables
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
WINEPREFIX = "$HOME/.local/share/wineprefix/default";
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
|
|
# Fix gtkrc-2.0 collision
|
|
home.file."/home/crony/.gtkrc-2.0".force = true;
|
|
|
|
# DO NOT CHANGE ALSO
|
|
home.stateVersion = "24.11"; # Please read the comment before changing.
|
|
}
|