nix-conf/hosts/nixos/home.nix

80 lines
1.4 KiB
Nix
Raw Normal View History

2025-01-28 15:00:09 +01:00
{
pkgs,
inputs,
...
}: {
2025-02-22 23:35:37 +01:00
imports = [
inputs.nvf.homeManagerModules.default
inputs.nix-index-database.hmModules.nix-index
];
2025-01-28 15:00:09 +01:00
# Some info
home.username = "crony";
home.homeDirectory = "/home/crony";
# PACKAGES
home.packages = with pkgs; [
keepassxc
2025-02-02 00:12:51 +01:00
tutanota-desktop
2025-02-01 19:19:58 +01:00
spice-gtk
2025-02-01 23:29:55 +01:00
vesktop
piper
2025-02-02 00:25:08 +01:00
heroic
2025-02-02 08:22:35 +01:00
prismlauncher
2025-02-02 08:28:31 +01:00
protonup-qt
2025-02-02 08:37:54 +01:00
protontricks
2025-02-02 08:42:28 +01:00
jellyfin-mpv-shim
2025-02-06 13:39:13 +01:00
itch
2025-02-06 17:03:56 +01:00
wineWowPackages.staging
2025-02-09 18:27:42 +01:00
osu-lazer-bin
2025-02-09 22:44:50 +01:00
overskride
2025-02-16 12:53:54 +01:00
delfin
# Setting up emulator just cause
(retroarch.overrideAttrs {
cores = with libretro; [
beetle-saturn
parallel-n64
flycast
desmume
];
})
duckstation
pcsx2
dolphin-emu
xemu
rpcs3
cemu
ppsspp-sdl-wayland
mame-tools
2025-01-28 15:00:09 +01:00
];
2025-02-16 12:53:54 +01:00
programs.thunderbird = {
enable = true;
profiles.default.isDefault = true;
};
# Install foot
2025-01-28 15:00:09 +01:00
programs.foot.enable = true;
2025-01-29 18:29:59 +01:00
2025-02-03 13:17:26 +01:00
# Install imv
programs.imv.enable = true;
# Enable syncthing
services.syncthing.enable = true;
2025-01-28 15:00:09 +01:00
# Default environmental variables
home.sessionVariables = {
EDITOR = "nvim";
2025-02-06 17:03:56 +01:00
WINEPREFIX = "$HOME/.local/share/wineprefix/default";
2025-01-28 15:00:09 +01:00
};
# 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.
}