snowflake/hosts/ame/home.nix

114 lines
2.4 KiB
Nix
Raw Normal View History

2023-06-10 16:41:06 -04:00
{pkgs, ...}: {
imports = [
../../home
2024-01-15 02:56:38 -05:00
../../home/anyrun
2024-01-11 07:51:55 -05:00
../../home/firefox
2023-06-10 16:41:06 -04:00
../../home/wezterm
../../home/zathura
../../home/zellij
2023-06-10 21:05:33 -04:00
../../home/mako
2023-06-10 21:52:18 -04:00
../../home/gtk/catppuccin-red.nix
2023-06-10 16:41:06 -04:00
];
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home = {
username = "notoh";
homeDirectory = "/home/notoh";
packages = with pkgs; [
2023-11-06 22:52:00 -05:00
discord
2023-06-10 16:41:06 -04:00
spotify-player
2023-11-06 22:52:00 -05:00
cinny-desktop
2023-06-10 16:41:06 -04:00
pavucontrol
unzip
p7zip
imv
mpv
rustypaste-cli
playerctl
2023-11-06 22:52:00 -05:00
obsidian
2023-06-10 16:41:06 -04:00
cryptomator
2023-06-10 21:05:33 -04:00
wayland
glib
grim
slurp
swappy
wl-clipboard
wlogout
wlr-randr
swayidle
swaylock-effects
swww
hyprpicker
2023-10-25 04:31:35 -04:00
(libsForQt5.callPackage ../../pkgs/chatterino7 {})
2023-06-10 16:41:06 -04:00
];
stateVersion = "23.05";
};
2024-01-17 07:40:05 -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 kaze
Hostname 100.69.79.81
User notoh
IdentityFile ~/.ssh/kaze
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
Host git.flake.sh
Hostname git.flake.sh
User notohh
IdentityFile ~/.ssh/notohh-git
Port 2222
Host github.com
Hostname github.com
User notohh
IdentityFile ~/.ssh/notohh-git
'';
};
2023-06-10 16:41:06 -04:00
}