2023-07-04 00:22:13 +02:00
|
|
|
{ pkgs, ... }:
|
2023-07-02 00:18:17 +02:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
home-manager.users.thiloho = { pkgs, lib, config, ... }: {
|
|
|
|
|
programs = {
|
|
|
|
|
bash = {
|
|
|
|
|
enable = true;
|
|
|
|
|
shellAliases = {
|
|
|
|
|
cleanup = "nix store optimise && nix-collect-garbage -d && sudo nix store optimise && sudo nix-collect-garbage -d";
|
|
|
|
|
listboots = "nix profile history --profile /nix/var/nix/profiles/system";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
alacritty = {
|
|
|
|
|
enable = true;
|
2023-07-04 00:22:13 +02:00
|
|
|
settings = {
|
|
|
|
|
window.opacity = 0.75;
|
|
|
|
|
font.size = 11.00;
|
|
|
|
|
};
|
2023-07-02 00:18:17 +02:00
|
|
|
};
|
|
|
|
|
firefox.enable = true;
|
|
|
|
|
chromium = {
|
|
|
|
|
enable = true;
|
|
|
|
|
extensions = [
|
|
|
|
|
{ id = "mmbiohbmijkiimgcgijfomelgpmdiigb"; }
|
|
|
|
|
{ id = "dhdgffkkebhmkfjojejmpbldmpobfkfo"; }
|
|
|
|
|
{ id = "cjpalhdlnbpafiamejdnhcphjbkeiagm"; }
|
|
|
|
|
];
|
|
|
|
|
};
|
2023-07-05 05:56:46 +02:00
|
|
|
vscode.enable = true;
|
2023-07-02 00:18:17 +02:00
|
|
|
git = {
|
|
|
|
|
enable = true;
|
|
|
|
|
userName = "thiloho";
|
|
|
|
|
userEmail = "123883702+thiloho@users.noreply.github.com";
|
|
|
|
|
signing = {
|
|
|
|
|
signByDefault = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
home = {
|
|
|
|
|
packages = with pkgs; [
|
|
|
|
|
libreoffice
|
|
|
|
|
airshipper
|
|
|
|
|
prismlauncher
|
|
|
|
|
ventoy
|
|
|
|
|
tldr
|
2023-07-05 03:09:46 +02:00
|
|
|
steam
|
2023-07-02 00:18:17 +02:00
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|