48 lines
773 B
Nix
48 lines
773 B
Nix
{pkgs, ...}: {
|
|
home = {
|
|
username = "benag";
|
|
homeDirectory = "/home/benag";
|
|
stateVersion = "25.11";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
imports = [
|
|
./modules/niri.nix
|
|
|
|
./modules/bspwm.nix
|
|
./modules/sxhkd.nix
|
|
|
|
./modules/picom.nix
|
|
|
|
./modules/shells.nix
|
|
./modules/nvf.nix
|
|
./modules/kitty.nix
|
|
./modules/polybar.nix
|
|
./modules/fastfetch.nix
|
|
./modules/cursor.nix
|
|
./modules/git.nix
|
|
./modules/create-project/create-project.nix
|
|
];
|
|
|
|
home.packages = [
|
|
pkgs.bspwm
|
|
pkgs.sxhkd
|
|
|
|
pkgs.swww
|
|
pkgs.feh
|
|
pkgs.picom
|
|
|
|
pkgs.rofi
|
|
pkgs.neovim
|
|
pkgs.kitty
|
|
pkgs.fastfetch
|
|
pkgs.pavucontrol
|
|
pkgs.btop
|
|
pkgs.playerctl
|
|
|
|
pkgs.discord
|
|
pkgs.heroic
|
|
pkgs.prismlauncher
|
|
];
|
|
}
|