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 = [
|
|
|
|
|
./editorconfig.nix
|
|
|
|
|
./fuzzel.nix
|
|
|
|
|
./git.nix
|
|
|
|
|
./gnome.nix
|
|
|
|
|
./ssh.nix
|
|
|
|
|
./vscode.nix
|
|
|
|
|
./zsh.nix
|
2025-09-28 21:08:34 +02:00
|
|
|
./starship.nix
|
2025-09-23 21:26:40 +02:00
|
|
|
#./niri.nix
|
|
|
|
|
#./swaylock.nix
|
|
|
|
|
#./waybar.nix
|
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;
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
telegram-desktop
|
|
|
|
|
element-desktop
|
|
|
|
|
|
|
|
|
|
wireguard-tools
|
|
|
|
|
wirelesstools
|
|
|
|
|
|
|
|
|
|
kdiff3
|
|
|
|
|
jetbrains-toolbox
|
|
|
|
|
|
|
|
|
|
blanket
|
|
|
|
|
vlc
|
|
|
|
|
|
|
|
|
|
ptyxis
|
|
|
|
|
|
|
|
|
|
arduino
|
|
|
|
|
arduino-ide
|
|
|
|
|
arduino-cli
|
|
|
|
|
|
|
|
|
|
servicepoint-cli
|
|
|
|
|
servicepoint-simulator
|
|
|
|
|
|
|
|
|
|
icu
|
|
|
|
|
|
|
|
|
|
nextcloud-client
|
|
|
|
|
|
|
|
|
|
lutris
|
|
|
|
|
|
|
|
|
|
foliate
|
|
|
|
|
|
|
|
|
|
dconf2nix
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-10-26 12:32:15 +02:00
|
|
|
}
|