nixos-configs/homeConfigurations/vinzenz/default.nix

97 lines
1.6 KiB
Nix
Raw Normal View History

2025-09-16 19:29:09 +02:00
{ pkgs, ... }:
2024-10-27 12:33:35 +01:00
{
imports = [
# keep-sorted start
./editorconfig.nix
2025-11-20 23:39:49 +01:00
./element.nix
./fonts.nix
./fuzzel.nix
./git.nix
./gnome.nix
./niri.nix
./ssh.nix
2025-09-28 21:08:34 +02:00
./starship.nix
2025-11-02 01:19:27 +01:00
./swaylock.nix
2025-11-12 00:30:41 +01:00
./swaync.nix
./vscode.nix
2025-11-02 01:19:27 +01:00
./waybar.nix
2025-11-15 18:57:42 +01:00
./wlogout.nix
./zsh.nix
# keep-sorted end
];
2025-09-16 19:29:09 +02:00
config = {
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
nextcloud-client
thunderbird
fractal
2025-09-16 19:29:09 +02:00
telegram-desktop
wireguard-tools
wirelesstools
tailscale
2025-09-16 19:29:09 +02:00
kdiff3
jetbrains-toolbox
vlc
lutris
2025-09-16 19:29:09 +02:00
arduino
arduino-ide
arduino-cli
servicepoint-cli
servicepoint-simulator
icu
foliate
dconf2nix
2025-11-20 23:39:49 +01:00
gnome-terminal
2025-09-16 19:29:09 +02:00
];
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";
};
2025-11-11 17:14:37 +01:00
services.trayscale.enable = true;
2025-09-16 19:29:09 +02:00
};
2024-10-26 12:32:15 +02:00
}