nixos-config/home/default.nix

43 lines
671 B
Nix

{pkgs, ...}:
let
user = import ../data/user.nix {};
in {
imports = [
./alacritty.nix
./firefox.nix
./sway.nix
./waybar.nix
./zsh.nix
./rofi.nix
./libinput.nix
./git-ssh.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
ripgrep
# nur.repos.LuisChDev.nordvpn
];
};
}