Files
nixos-conf/home-manager/autumn/home.nix
2025-09-19 07:57:03 +00:00

53 lines
1.0 KiB
Nix

{ config, pkgs, ... }:
{
home = {
username = "autumn";
homeDirectory = "/home/autumn";
stateVersion = "25.11";
packages = with pkgs; [
eza
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;
enableFishIntegration = true;
};
};
nixpkgs.config = {
alowUnfree = true;
allowUnfreePredicate = (_: true);
};
# wayland.windowManager.river.enable = true;
imports = [
# 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/starship/starship.nix
../packages/thunderbird/thunderbird.nix
../packages/zoxide/zoxide.nix
# ../packages/zsh/zsh.nix
# package bundles
./bundles/langs.nix
];
}