nix-conf/hosts/nixos/home.nix

140 lines
2.4 KiB
Nix
Raw Normal View History

2025-01-28 15:00:09 +01:00
{
config,
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; [
qbittorrent
alejandra
keepassxc
restic
age
nix-output-monitor
nvd
thunderbird
sesh
2025-01-30 22:47:00 +01:00
stress-ng
dmidecode
2025-01-31 17:39:12 +01:00
nurl
2025-01-31 23:11:11 +01:00
entr
2025-01-28 15:00:09 +01:00
];
# Install librewolf
programs.librewolf.enable = true;
2025-02-01 08:29:26 +01:00
# Install obs-studio
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-vkcapture
];
};
# Install nh
programs.nh = {
enable = true;
flake = "/home/crony/Repos/nixos";
};
# Install foot
2025-01-28 15:00:09 +01:00
programs.foot.enable = true;
2025-01-29 18:29:59 +01:00
2025-01-28 15:00:09 +01:00
# Enable theming chromium + use ungoogled chromium package
programs.chromium = {
enable = true;
package = pkgs.ungoogled-chromium;
};
# 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-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.
}