nixos-config/new/home/default.nix
2025-07-21 00:40:07 +02:00

38 lines
583 B
Nix

{pkgs, ...}:
let
user = import ../data/user.nix {};
in {
imports = [
./alacritty.nix
./firefox.nix
./sway.nix
./waybar.nix
./zsh.nix
./rofi.nix
];
fonts.fontconfig.enable = true;
home = {
stateVersion = "25.05";
homeDirectory = "/home/${user.username}";
username = user.username;
sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
packages = with pkgs; [
# Add your global packages here
neovim
git
wget
curl
htop
tree
htop
pavucontrol
];
};
}