rename home dir

This commit is contained in:
2025-09-19 15:07:40 +00:00
parent d412f1ac6c
commit 2ab49fbfc8
30 changed files with 0 additions and 0 deletions

52
home/autumn/home.nix Normal file
View File

@@ -0,0 +1,52 @@
{ 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
];
}