This repository has been archived on 2024-01-17. You can view files and clone it, but cannot push or open issues or pull requests.
code-server-configurations/programs.nix

57 lines
1011 B
Nix
Raw Normal View History

2023-09-28 05:36:53 +00:00
{
2023-07-07 06:05:49 +00:00
programs = {
2023-07-04 10:46:36 +00:00
ssh = {
enable = true;
matchBlocks = {
"git-ssh.sense-t.eu.org" = {
hostname = "gitea.default";
};
2023-09-28 05:36:53 +00:00
"nas" = {
hostname = "192.168.1.25";
user = "rouji";
port = 2334;
};
2023-07-04 10:46:36 +00:00
};
};
2023-07-04 09:31:01 +00:00
go = {
enable = true;
goPath = ".local/go";
};
git = {
enable = true;
userName = "Sense T";
userEmail = "me@sense-t.eu.org";
ignores = [
".DS_Store"
"*~"
"*.swp"
];
};
vim = {
enable = true;
defaultEditor = true;
};
zsh = {
enable = true;
enableAutosuggestions = true;
2023-07-04 10:12:49 +00:00
syntaxHighlighting.enable = true;
2023-07-04 09:31:01 +00:00
enableVteIntegration = true;
oh-my-zsh = {
enable = true;
2023-07-07 05:04:37 +00:00
plugins = [ "sudo" "git" "golang" "thefuck" "kubectl" "pip" "npm" "yarn" "vscode" "rust" ];
2023-07-04 09:31:01 +00:00
theme = "fishy";
};
2023-07-04 10:23:34 +00:00
2023-07-07 06:05:49 +00:00
profileExtra = ''
source .profile
2023-07-04 10:23:34 +00:00
'';
2023-07-04 09:31:01 +00:00
};
};
}