2025-09-16 19:29:09 +02:00
|
|
|
{ pkgs, ... }:
|
2024-10-27 12:33:35 +01:00
|
|
|
{
|
2025-09-15 19:01:30 +02:00
|
|
|
imports = [
|
2025-11-11 12:08:04 +01:00
|
|
|
# keep-sorted start
|
2025-09-15 19:01:30 +02:00
|
|
|
./editorconfig.nix
|
2025-11-20 23:39:49 +01:00
|
|
|
./element.nix
|
2025-11-11 12:08:04 +01:00
|
|
|
./fonts.nix
|
2025-09-15 19:01:30 +02:00
|
|
|
./fuzzel.nix
|
|
|
|
|
./git.nix
|
|
|
|
|
./gnome.nix
|
2025-11-11 12:08:04 +01:00
|
|
|
./niri.nix
|
2026-02-22 14:34:19 +01:00
|
|
|
./podman.nix
|
2025-09-15 19:01:30 +02:00
|
|
|
./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
|
2025-11-11 12:08:04 +01:00
|
|
|
./vscode.nix
|
2025-11-02 01:19:27 +01:00
|
|
|
./waybar.nix
|
2025-11-15 18:57:42 +01:00
|
|
|
./wlogout.nix
|
2025-11-11 12:08:04 +01:00
|
|
|
./zsh.nix
|
|
|
|
|
# keep-sorted end
|
2025-09-15 19:01:30 +02:00
|
|
|
];
|
2025-09-16 19:29:09 +02:00
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
programs = {
|
|
|
|
|
home-manager.enable = true;
|
|
|
|
|
fzf.enable = true;
|
|
|
|
|
|
|
|
|
|
direnv = {
|
|
|
|
|
enable = true;
|
|
|
|
|
nix-direnv.enable = true;
|
|
|
|
|
enableZshIntegration = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
eza = {
|
|
|
|
|
enable = true;
|
|
|
|
|
git = true;
|
|
|
|
|
icons = "auto";
|
|
|
|
|
extraOptions = [
|
|
|
|
|
"--group-directories-first"
|
|
|
|
|
"--header"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2025-12-01 17:30:51 +01:00
|
|
|
pay-respects = {
|
2025-09-16 19:29:09 +02:00
|
|
|
enable = true;
|
|
|
|
|
enableZshIntegration = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
chromium.enable = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
keepassxc
|
2025-11-03 22:30:46 +01:00
|
|
|
nextcloud-client
|
|
|
|
|
thunderbird
|
|
|
|
|
fractal
|
2025-09-16 19:29:09 +02:00
|
|
|
telegram-desktop
|
|
|
|
|
|
|
|
|
|
wireguard-tools
|
|
|
|
|
wirelesstools
|
2025-11-11 12:08:04 +01:00
|
|
|
tailscale
|
2025-09-16 19:29:09 +02:00
|
|
|
|
|
|
|
|
kdiff3
|
|
|
|
|
jetbrains-toolbox
|
|
|
|
|
|
|
|
|
|
vlc
|
2025-11-03 22:30:46 +01:00
|
|
|
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 = {
|
|
|
|
|
"idea.properties".text = "idea.filewatcher.executable.path = ${pkgs.fsnotifier}/bin/fsnotifier";
|
|
|
|
|
};
|
2025-11-11 17:14:37 +01:00
|
|
|
|
2025-11-20 23:46:08 +01:00
|
|
|
services = {
|
|
|
|
|
trayscale.enable = true;
|
|
|
|
|
poweralertd.enable = true;
|
|
|
|
|
};
|
2025-09-16 19:29:09 +02:00
|
|
|
};
|
2024-10-26 12:32:15 +02:00
|
|
|
}
|