nixos-configs/home/vinzenz/default.nix

73 lines
1.2 KiB
Nix
Raw Normal View History

2024-10-26 12:32:15 +02:00
inputs @ {
config,
osConfig,
pkgs,
lib,
...
2024-10-26 16:43:08 +02:00
}: {
2024-10-26 12:32:15 +02:00
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;
direnv = {
enable = true;
nix-direnv.enable = true;
};
eza = {
enable = true;
git = true;
icons = true;
extraOptions = [
"--group-directories-first"
"--header"
];
};
};
2024-10-26 18:15:50 +02:00
editorconfig = import ./editorconfig.nix;
2024-10-26 12:32:15 +02:00
home.packages = with pkgs; [
keepassxc
insync
telegram-desktop
element-desktop
wireguard-tools
wirelesstools
alejandra # nix formatter
arduino
uucp
kdiff3
jetbrains-toolbox
];
home.file."policy.json" = {
target = ".config/containers/policy.json";
text = ''
{
"default": [
{
"type": "insecureAcceptAnything"
}
],
"transports":
{
"docker-daemon":
{
"": [{"type":"insecureAcceptAnything"}]
}
}
}
'';
};
}