mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
inputs@{ pkgs, ... }:
|
|
{
|
|
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 = "auto";
|
|
extraOptions = [
|
|
"--group-directories-first"
|
|
"--header"
|
|
];
|
|
};
|
|
};
|
|
|
|
editorconfig = import ./editorconfig.nix;
|
|
|
|
home.packages = with pkgs; [
|
|
keepassxc
|
|
insync
|
|
|
|
telegram-desktop
|
|
element-desktop
|
|
|
|
wireguard-tools
|
|
wirelesstools
|
|
|
|
alejandra # nix formatter
|
|
|
|
kdiff3
|
|
jetbrains-toolbox
|
|
];
|
|
|
|
home.file."policy.json" = {
|
|
target = ".config/containers/policy.json";
|
|
text = ''
|
|
{
|
|
"default": [
|
|
{
|
|
"type": "insecureAcceptAnything"
|
|
}
|
|
],
|
|
"transports":
|
|
{
|
|
"docker-daemon":
|
|
{
|
|
"": [{"type":"insecureAcceptAnything"}]
|
|
}
|
|
}
|
|
}
|
|
'';
|
|
};
|
|
}
|