snowflake/home/default.nix

68 lines
1.2 KiB
Nix
Raw Normal View History

2023-04-23 17:45:37 -04:00
{pkgs, ...}: {
imports = [
2023-03-19 15:10:30 -04:00
./neofetch
./nushell
./starship
./helix
./git
./lazygit
2023-05-17 08:57:12 -04:00
./lf
2023-04-14 23:19:31 -04:00
./direnv
2023-05-21 06:04:38 -04:00
./btop
];
2023-03-19 19:31:25 -04:00
home.packages = with pkgs; [
2023-03-31 18:28:25 -04:00
croc
2023-05-17 08:57:12 -04:00
exa
ripgrep
2023-05-12 02:07:29 -04:00
lazydocker
2023-05-12 03:22:13 -04:00
yt-dlp
nfs-utils
pinentry-curses
2023-03-19 19:31:25 -04:00
];
2023-05-14 23:03:59 -04:00
programs.ssh = {
enable = true;
extraConfig = ''
Host sakura
HostName 192.168.1.25
User notoh
IdentityFile /home/notoh/.ssh/sakura
2023-05-17 11:24:06 -04:00
Host kariru
HostName 192.168.1.54
User notoh
IdentityFile /home/notoh/.ssh/kariru
2023-05-14 23:03:59 -04:00
Host pihole
Hostname 192.168.1.221
User root
Host pve1
Hostname 192.168.1.36
User root
'';
};
2023-05-17 11:24:06 -04:00
programs.bat = {
enable = true;
config = {
theme = "catppuccin-mocha";
};
themes = {
catppuccin-mocha = builtins.readFile (pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "bat";
rev = "ba4d16880d63e656acced2b7d4e034e4a93f74b1";
sha256 = "sha256-6WVKQErGdaqb++oaXnY3i6/GuH2FhTgK0v4TN4Y0Wbw=";
}
+ "/Catppuccin-mocha.tmTheme");
};
};
2023-05-17 11:24:06 -04:00
2023-05-17 08:57:12 -04:00
programs.zoxide = {
enable = true;
enableNushellIntegration = true;
options = [
"--cmd cdd"
];
};
2023-04-23 17:45:37 -04:00
}