nixos-configs/home/vinzenz/default.nix

61 lines
1.1 KiB
Nix
Raw Normal View History

2024-10-27 12:33:35 +01:00
inputs@{ pkgs, ... }:
{
imports = [ ./gnome.nix ];
2024-10-26 12:32:15 +02:00
config = {
programs = {
home-manager.enable = true;
fzf.enable = true;
zsh = import ./zsh.nix inputs;
git = import ./git.nix;
vscode = import ./vscode.nix inputs;
ssh = import ./ssh.nix;
2025-02-13 19:04:14 +01:00
git-credential-oauth.enable = true;
direnv = {
enable = true;
nix-direnv.enable = true;
};
2024-10-26 12:32:15 +02:00
eza = {
enable = true;
git = true;
icons = "auto";
extraOptions = [
"--group-directories-first"
"--header"
];
};
2025-03-15 11:27:22 +01:00
thefuck = {
enable = true;
enableZshIntegration = true;
};
2024-10-26 12:32:15 +02:00
};
editorconfig = import ./editorconfig.nix;
2024-10-26 18:15:50 +02:00
home.packages = with pkgs; [
keepassxc
insync
2024-10-26 12:32:15 +02:00
telegram-desktop
element-desktop
2024-10-26 12:32:15 +02:00
wireguard-tools
wirelesstools
2024-10-26 12:32:15 +02:00
kdiff3
jetbrains-toolbox
2025-01-26 16:19:59 +01:00
blanket
vlc
];
2024-10-26 12:32:15 +02:00
home.file."policy.json" = {
target = ".config/containers/policy.json";
text = builtins.readFile ./.config/containers/policy.json;
};
2024-10-26 12:32:15 +02:00
};
}