37 lines
886 B
Nix
37 lines
886 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./modules/home/git.nix
|
|
./modules/home/neovim.nix
|
|
./modules/home/obs.nix
|
|
./modules/home/fish.nix
|
|
./modules/home/starship.nix
|
|
./modules/home/alacritty.nix
|
|
./modules/home/bash.nix
|
|
];
|
|
|
|
home.username = "allen";
|
|
home.homeDirectory = "/home/allen";
|
|
|
|
xresources.properties = {
|
|
"Xcursor.size" = 16;
|
|
"Xft.dpi" = 172;
|
|
};
|
|
|
|
home.packages = let
|
|
fonts = import ./pkgs/fonts.nix;
|
|
minecraft = import ./pkgs/minecraft.nix;
|
|
misc = import ./pkgs/misc.nix;
|
|
network = import ./pkgs/network.nix;
|
|
programming = import ./pkgs/programming.nix;
|
|
tools = import ./pkgs/tools.nix;
|
|
util = import ./pkgs/util.nix;
|
|
in fonts ++ minecraft ++ misc ++ network ++ programming ++ tools ++ util;
|
|
|
|
programs.direnv.enable = true;
|
|
programs.direnv.nix-direnv.enable = true;
|
|
|
|
home.stateVersion = "25.05";
|
|
}
|