snowflake/hosts/tsuki/home.nix

136 lines
3.3 KiB
Nix
Raw Normal View History

2023-11-15 02:02:05 -05:00
{
inputs,
pkgs,
...
}: {
2023-04-23 17:45:37 -04:00
imports = [
../../home
2023-11-24 04:22:20 -05:00
../../home/ags
../../home/anyrun
../../home/cava
2023-04-23 17:45:37 -04:00
../../home/wezterm
../../home/zathura
../../home/gtk
2023-06-06 01:12:12 -04:00
../../home/mako
2023-04-23 17:45:37 -04:00
../../home/zellij
2023-06-17 10:38:47 -04:00
../../home/spotify-player
2023-04-23 17:45:37 -04:00
../../home/wayland/hyprland
../../modules/swayidle.nix
];
2022-12-16 23:42:46 -05:00
2023-04-23 17:45:37 -04:00
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
2022-12-16 23:42:46 -05:00
2023-01-30 06:09:00 -05:00
home = {
username = "notoh";
homeDirectory = "/home/notoh";
2023-02-27 04:50:24 -05:00
packages = with pkgs; [
2023-11-28 20:56:40 -05:00
floorp
chromium
2023-06-02 23:30:30 -04:00
discord
2023-09-29 13:38:57 -04:00
cinny-desktop
2023-09-24 20:24:08 -04:00
thunderbird
2023-02-27 04:50:24 -05:00
obs-studio
2023-12-23 16:29:22 -05:00
signal-desktop
2023-02-27 04:50:24 -05:00
pavucontrol
2023-12-26 23:08:35 -05:00
vscodium-fhs
2023-12-29 11:44:32 -05:00
# obsidian
2023-02-27 04:50:24 -05:00
unzip
2023-12-15 10:08:23 -05:00
unrar
2023-02-27 04:50:24 -05:00
p7zip
virt-manager
imv
2023-04-12 21:39:49 -04:00
mpv
rustypaste-cli
gimp
2023-02-27 04:50:24 -05:00
cryptomator
ventoy-bin-full
wine
lutris
gamemode
mangohud
bottles
runelite
prismlauncher
2023-12-15 10:08:23 -05:00
yuzu
2023-11-15 02:02:05 -05:00
inputs.nix-gaming.packages.${pkgs.system}.osu-lazer-bin
2023-12-15 10:08:23 -05:00
inputs.nix-gaming.packages.${pkgs.system}.wine-discord-ipc-bridge
(libsForQt5.callPackage ../../pkgs/chatterino7 {})
2023-09-05 09:35:42 -04:00
(callPackage ../../pkgs/jellyfin-rpc {})
2023-02-27 04:50:24 -05:00
];
2023-02-27 05:12:00 -05:00
stateVersion = "23.05";
2023-01-30 06:09:00 -05:00
};
2023-12-29 12:27:43 -05:00
programs.ssh = {
enable = true;
extraConfig = ''
Host sakura
HostName 100.121.201.47
User notoh
IdentityFile ~/.ssh/sakura
Host kariru
HostName 100.126.229.95
User notoh
IdentityFile ~/.ssh/kariru
Host yuki
HostName 100.108.113.89
User notoh
IdentityFile ~/.ssh/yuki
Host arashi
HostName 100.94.214.100
User notoh
IdentityFile ~/.ssh/arashi
Host sora
HostName 100.104.42.96
User notoh
IdentityFile ~/.ssh/sora
Host daphbot
Hostname 100.109.118.139
User root
IdentityFile ~/.ssh/daphbot
Host tsuru
HostName 100.82.146.40
User notoh
IdentityFile ~/.ssh/tsuru
Host haru
HostName 100.73.192.45
User notoh
IdentityFile ~/.ssh/haru
Host basegbot
HostName 100.83.81.116
User basegbot
IdentityFile ~/.ssh/basegbot
Host rpi4
HostName 100.92.145.147
User notoh
IdentityFile ~/.ssh/rpi4
Host pve
Hostname 100.115.234.69
User root
Host truenas
Hostname 192.168.1.199
User root
IdentityFile ~/.ssh/truenas
'';
};
xdg.mimeApps = {
enable = true;
defaultApplications = {
"x-scheme-handler/discord-409416265891971072" = ["discord-409416265891971072.desktop"];
"x-scheme-handler/discord-402572971681644545" = ["discord-402572971681644545.desktop"];
"x-scheme-handler/discord-696343075731144724" = ["discord-696343075731144724.desktop"];
"x-scheme-handler/http" = ["floorp.desktop"];
"x-scheme-handler/https" = ["floorp.desktop"];
"x-scheme-handler/chrome" = ["floorp.desktop"];
"text/html" = ["floorp.desktop"];
"application/x-extension-htm" = ["floorp.desktop"];
"application/x-extension-html" = ["floorp.desktop"];
"application/x-extension-shtml" = ["floorp.desktop"];
"application/xhtml+xml" = ["floorp.desktop"];
"application/x-extension-xhtml" = ["floorp.desktop"];
"application/x-extension-xht" = ["floorp.desktop"];
};
};
2023-04-23 17:45:37 -04:00
}