nix-conf/hosts/nixos/home.nix

146 lines
2.5 KiB
Nix
Raw Normal View History

2025-01-28 15:00:09 +01:00
{
pkgs,
inputs,
...
}: {
imports = [inputs.nvf.homeManagerModules.default];
2025-01-28 15:00:09 +01:00
# Some info
home.username = "crony";
home.homeDirectory = "/home/crony";
# PACKAGES
home.packages = with pkgs; [
alejandra
keepassxc
age
nix-output-monitor
nvd
thunderbird
2025-02-02 00:12:51 +01:00
tutanota-desktop
sesh
2025-01-31 17:39:12 +01:00
nurl
2025-01-31 23:11:11 +01:00
entr
2025-02-01 13:46:03 +01:00
ffmpeg
2025-02-01 23:59:59 +01:00
imagemagick
glow
ueberzugpp
2025-02-01 19:19:58 +01:00
spice-gtk
2025-02-01 23:29:55 +01:00
vesktop
2025-02-01 23:37:37 +01:00
buku
bukubrow
piper
2025-02-02 00:25:08 +01:00
heroic
2025-02-02 08:22:35 +01:00
prismlauncher
2025-02-02 08:28:31 +01:00
protonup-qt
2025-02-02 08:37:54 +01:00
protontricks
2025-02-02 08:42:28 +01:00
jellyfin-mpv-shim
2025-02-03 17:44:46 +01:00
fractal
2025-01-28 15:00:09 +01:00
];
# Install librewolf
programs.librewolf.enable = true;
# Install foot
2025-01-28 15:00:09 +01:00
programs.foot.enable = true;
2025-01-29 18:29:59 +01:00
2025-02-03 13:17:26 +01:00
# Install imv
programs.imv.enable = true;
2025-01-28 15:00:09 +01:00
# Enable theming chromium + use ungoogled chromium package
programs.chromium = {
enable = true;
package = pkgs.ungoogled-chromium;
2025-02-02 23:32:02 +01:00
# Fix for wayland
commandLineArgs = [
"--ozone-platform-hint=auto"
"--ozone-platform=wayland"
];
2025-01-28 15:00:09 +01:00
};
# Enable git
programs.git = {
enable = true;
userName = "Crony Akatsuki";
userEmail = "crony@cronyakatsuki.xyz";
};
# Enable syncthing
services.syncthing.enable = true;
# Install fzf
programs.fzf = {
enable = true;
enableZshIntegration = true;
};
# Install starship
programs.starship = {
enable = true;
enableZshIntegration = true;
settings = {
add_newline = false;
};
};
# Install zoxide
programs.zoxide = {
enable = true;
enableZshIntegration = true;
};
# Install eza
programs.eza = {
enable = true;
enableZshIntegration = true;
git = true;
2025-01-29 22:10:21 +01:00
icons = "always";
};
# Install direnv
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
2025-01-31 23:11:11 +01:00
# Install the fuck
programs.thefuck = {
enable = true;
enableZshIntegration = true;
};
# Install tealdeer
programs.tealdeer.enable = true;
# Install bat
programs.bat.enable = true;
# Install jq
programs.jq.enable = true;
# Install fd
programs.fd = {
enable = true;
hidden = true;
ignores = ["~/Documents/Share" ".git"];
};
2025-02-01 22:27:49 +01:00
# Install btop
2025-01-31 23:24:38 +01:00
programs.btop.enable = true;
2025-01-28 15:00:09 +01:00
# Default environmental variables
home.sessionVariables = {
EDITOR = "nvim";
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# Fix gtkrc-2.0 collision
home.file."/home/crony/.gtkrc-2.0".force = true;
# DO NOT CHANGE ALSO
home.stateVersion = "24.11"; # Please read the comment before changing.
}