user rename

This commit is contained in:
müde 2026-02-01 12:23:07 +01:00
parent 1b9e61f630
commit 82631191ea
33 changed files with 36 additions and 36 deletions

View file

@ -0,0 +1,99 @@
{ pkgs, ... }:
{
imports = [
# keep-sorted start
./editorconfig.nix
./element.nix
./fonts.nix
./fuzzel.nix
./git.nix
./gnome.nix
./niri.nix
./ssh.nix
./starship.nix
./swaylock.nix
./swaync.nix
./vscode.nix
./waybar.nix
./wlogout.nix
./zsh.nix
# keep-sorted end
];
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"
];
};
pay-respects = {
enable = true;
enableZshIntegration = true;
};
chromium.enable = true;
};
home.packages = with pkgs; [
keepassxc
nextcloud-client
thunderbird
fractal
telegram-desktop
wireguard-tools
wirelesstools
tailscale
kdiff3
jetbrains-toolbox
vlc
lutris
arduino
arduino-ide
arduino-cli
servicepoint-cli
servicepoint-simulator
icu
foliate
dconf2nix
gnome-terminal
];
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";
};
services = {
trayscale.enable = true;
poweralertd.enable = true;
};
};
}