72 lines
1.1 KiB
Nix
72 lines
1.1 KiB
Nix
{ pkgs, ... }:
|
|
{
|
|
programs = {
|
|
home-manager.enable = true;
|
|
fzf.enable = true;
|
|
git-credential-oauth.enable = true;
|
|
|
|
direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
|
|
eza = {
|
|
enable = true;
|
|
git = true;
|
|
icons = "auto";
|
|
extraOptions = [
|
|
"--group-directories-first"
|
|
"--header"
|
|
];
|
|
};
|
|
|
|
thefuck = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
|
|
chromium.enable = true;
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
keepassxc
|
|
insync
|
|
|
|
telegram-desktop
|
|
element-desktop
|
|
|
|
wireguard-tools
|
|
wirelesstools
|
|
|
|
kdiff3
|
|
jetbrains-toolbox
|
|
|
|
blanket
|
|
vlc
|
|
|
|
ptyxis
|
|
|
|
arduino
|
|
arduino-ide
|
|
arduino-cli
|
|
kicad
|
|
kikit
|
|
|
|
ut1999
|
|
|
|
servicepoint-cli
|
|
servicepoint-simulator
|
|
|
|
anydesk
|
|
];
|
|
|
|
home.file = {
|
|
"policy.json" = {
|
|
target = ".config/containers/policy.json";
|
|
text = builtins.readFile ./.config/containers/policy.json;
|
|
};
|
|
"idea.properties".text = "idea.filewatcher.executable.path = ${pkgs.fsnotifier}/bin/fsnotifier";
|
|
};
|
|
}
|