rename home dir
This commit is contained in:
52
home/autumn/home.nix
Normal file
52
home/autumn/home.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user