Files
nixos-conf/home/autumn/home.nix
2025-11-25 16:50:47 -07:00

58 lines
1.1 KiB
Nix

{ config, pkgs, inputs, ... }:
{
home = {
username = "autumn";
homeDirectory = "/home/autumn";
stateVersion = "25.11";
packages = with pkgs; [
fm
felix
gnumake
htop
nerd-fonts.hack
neofetch
uv
wev
];
sessionVariables = {
EDITOR = "helix";
TERM = "alacritty";
};
};
programs = {
home-manager.enable = true;
htop.enable = true;
pls = {
enable = true;
enableZshIntegration = true;
};
};
nixpkgs.config = {
alowUnfree = true;
allowUnfreePredicate = (_: true);
};
imports = [
## Themeing
# cursor theme
../themefiles/cursor.nix
# packages with further configuration
../packages/alacritty/alacritty.nix
../packages/crawl/crawl.nix
../packages/direnv/direnv.nix
../packages/git/git.nix
../packages/helix/helix.nix
../packages/spotifyd/spotifyd.nix
../packages/starship/starship.nix
../packages/thunderbird/thunderbird.nix
../packages/zoxide/zoxide.nix
../packages/zsh/zsh.nix
# package bundles
../bundles/langs.nix
];
}