nix/home-manager/t14/home.nix
2024-05-14 01:01:59 -05:00

56 lines
953 B
Nix
Executable file

{
pkgs,
lib,
attrs,
...
}: {
imports = [
../shared/programs/default.nix
../shared/wayland/default.nix
];
home = {
inherit (attrs) username;
homeDirectory = "/home/" + attrs.username;
packages = with pkgs; [
# gaming
steam
prismlauncher
runelite
jdk17
# comms
signal-desktop
discord
# apps
chromium
pcmanfm
feh
ffmpeg
mpv
wdisplays
# font
spleen
# sysutils
appimage-run
wireguard-tools
];
};
programs.ssh = {
enable = true;
matchBlocks = {
"racknerd" = {
hostname = "racknerd.10110110.xyz";
identityFile = "/home/e/.ssh/racknerd";
};
"htz" = {
hostname = "htz.10110110.xyz";
identityFile = "/home/e/.ssh/id_ed25519";
};
};
};
fonts.fontconfig.enable = lib.mkForce true;
systemd.user.startServices = "sd-switch";
}