mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-19 02:50:12 +01:00
174 lines
3.9 KiB
Nix
174 lines
3.9 KiB
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
home.packages = with pkgs; [
|
||
|
keepassxc
|
||
|
insync
|
||
|
telegram-desktop
|
||
|
simple-scan
|
||
|
wireguard-tools
|
||
|
element-desktop
|
||
|
etcher
|
||
|
iotop
|
||
|
lsof
|
||
|
wirelesstools
|
||
|
thefuck
|
||
|
dotnet-sdk_7
|
||
|
jetbrains.rider
|
||
|
alejandra
|
||
|
arduino
|
||
|
uucp
|
||
|
screen
|
||
|
jetbrains.pycharm-professional
|
||
|
kdiff3
|
||
|
docker
|
||
|
youtube-music
|
||
|
];
|
||
|
|
||
|
programs = {
|
||
|
home-manager.enable = true;
|
||
|
|
||
|
firefox.enable = true;
|
||
|
fzf.enable = true;
|
||
|
mangohud.enable = true;
|
||
|
|
||
|
zsh = {
|
||
|
initExtra = ''
|
||
|
eval "$(direnv hook zsh)";
|
||
|
eval $(thefuck --alias);
|
||
|
'';
|
||
|
|
||
|
shellAliases = {
|
||
|
my-apply = "sudo nixos-rebuild boot";
|
||
|
my-switch = "sudo nixos-rebuild switch";
|
||
|
my-update = "sudo nixos-rebuild boot --upgrade";
|
||
|
my-fmt = "alejandra .";
|
||
|
my-test = "sudo nixos-rebuild test";
|
||
|
my-direnvallow = "echo \"use nix\" > .envrc && direnv allow";
|
||
|
my-ip4 = "ip addr show | grep 192";
|
||
|
};
|
||
|
|
||
|
history = {
|
||
|
size = 10000;
|
||
|
path = "${config.xdg.dataHome}/zsh/history";
|
||
|
expireDuplicatesFirst = true;
|
||
|
};
|
||
|
|
||
|
oh-my-zsh = {
|
||
|
enable = true;
|
||
|
theme = "agnoster";
|
||
|
plugins = ["git" "sudo" "docker" "systemadmin" "thefuck"];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
git = {
|
||
|
enable = true;
|
||
|
userName = "Vinzenz Schroeter";
|
||
|
userEmail = "vinzenz.f.s@gmail.com";
|
||
|
|
||
|
aliases = {
|
||
|
prettylog = "log --pretty=oneline --graph";
|
||
|
};
|
||
|
|
||
|
extraConfig = {
|
||
|
pull.ff = "only";
|
||
|
init.defaultBranch = "main";
|
||
|
merge.tool = "kdiff3";
|
||
|
push.autoSetupRemote = "true";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
vscode = {
|
||
|
enable = true;
|
||
|
package = pkgs.vscodium;
|
||
|
enableUpdateCheck = false;
|
||
|
extensions = with pkgs; [
|
||
|
vscode-extensions.bbenoist.nix
|
||
|
vscode-extensions.ms-python.python
|
||
|
vscode-extensions.kamadorueda.alejandra
|
||
|
];
|
||
|
userSettings = {
|
||
|
"git.autofetch" = true;
|
||
|
"update.mode" = "none";
|
||
|
"editor.fontFamily" = "'Fira Code', 'Droid Sans Mono', 'monospace', monospace";
|
||
|
"editor.fontLigatures" = true;
|
||
|
"editor.formatOnSave" = true;
|
||
|
"editor.formatOnSaveMode" = "modificationsIfAvailable";
|
||
|
"editor.minimap.autohide" = true;
|
||
|
"diffEditor.diffAlgorithm" = "advanced";
|
||
|
"explorer.excludeGitIgnore" = true;
|
||
|
"workbench.startupEditor" = "readme";
|
||
|
"markdown.extension.tableFormatter.normalizeIndentation" = true;
|
||
|
"markdown.extension.toc.orderedList" = false;
|
||
|
"telemetry.telemetryLevel" = "off";
|
||
|
"redhat.telemetry.enabled" = false;
|
||
|
"workbench.enableExperiments" = false;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
direnv = {
|
||
|
enable = true;
|
||
|
nix-direnv.enable = true;
|
||
|
};
|
||
|
|
||
|
chromium = {
|
||
|
enable = true;
|
||
|
extensions = [
|
||
|
{
|
||
|
# ublock origin
|
||
|
id = "cjpalhdlnbpafiamejdnhcphjbkeiagm";
|
||
|
}
|
||
|
{
|
||
|
id = "dcpihecpambacapedldabdbpakmachpb";
|
||
|
updateUrl = "https://raw.githubusercontent.com/iamadamdev/bypass-paywalls-chrome/master/updates.xml";
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
|
||
|
exa = {
|
||
|
enable = true;
|
||
|
git = true;
|
||
|
icons = true;
|
||
|
enableAliases = true;
|
||
|
extraOptions = [
|
||
|
"--group-directories-first"
|
||
|
"--header"
|
||
|
];
|
||
|
};
|
||
|
|
||
|
micro = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
colorcolumn = 120;
|
||
|
hlsearch = true;
|
||
|
savecursor = true;
|
||
|
saveundo = true;
|
||
|
scrollbar = true;
|
||
|
smartpaste = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
# checked https://rycee.gitlab.io/home-manager/options.html until "programs.notmuch"
|
||
|
};
|
||
|
|
||
|
editorconfig = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
"*" = {
|
||
|
charset = "utf-8";
|
||
|
end_of_line = "lf";
|
||
|
trim_trailing_whitespace = true;
|
||
|
insert_final_newline = true;
|
||
|
max_line_width = 120;
|
||
|
indent_style = "space";
|
||
|
indent_size = 4;
|
||
|
};
|
||
|
"*.nix" = {
|
||
|
indent_size = 2;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|