nix/home-manager/t14/home.nix
2025-04-04 02:26:15 -05:00

57 lines
1 KiB
Nix
Executable file

{
pkgs,
lib,
...
}: {
imports = [
../shared/programs/default.nix
../shared/wayland/default.nix
];
home = {
packages = with pkgs; [
# gaming
prismlauncher
runelite
jdk21
steam-run
# comms
signal-desktop
discord
# apps
(chromium.override {commandLineArgs = "--load-media-router-component-extension=1";}) #chromecast
pcmanfm
feh
ffmpeg
mpv
vlc
wdisplays
piper
calibre
# sysutils
appimage-run
wireguard-tools
android-tools
];
};
programs.ssh = {
enable = true;
matchBlocks = {
"consensus" = {
port = 2022;
hostname = "192.168.1.251";
identityFile = "/home/e/.ssh/id_ed25519";
};
"10110110.xyz" = {
port = 22;
hostname = "10110110.xyz";
user = "git";
identityFile = "/home/e/.ssh/id_ed25519";
};
};
};
fonts.fontconfig.enable = lib.mkForce true;
systemd.user.startServices = "sd-switch";
}