first commit
This commit is contained in:
commit
780ddcda1c
37 changed files with 981 additions and 0 deletions
40
home/home.nix
Normal file
40
home/home.nix
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{pkgs, ...}: {
|
||||
home = {
|
||||
username = "benag";
|
||||
homeDirectory = "/home/benag";
|
||||
stateVersion = "25.11";
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
imports = [
|
||||
./modules/bspwm.nix
|
||||
./modules/sxhkd.nix
|
||||
|
||||
./modules/picom.nix
|
||||
|
||||
./modules/shells.nix
|
||||
./modules/nvf.nix
|
||||
./modules/kitty.nix
|
||||
./modules/fastfetch.nix
|
||||
./modules/git.nix
|
||||
./modules/create-project/create-project.nix
|
||||
];
|
||||
|
||||
home.packages = [
|
||||
pkgs.bspwm
|
||||
pkgs.sxhkd
|
||||
|
||||
pkgs.feh
|
||||
pkgs.picom
|
||||
|
||||
pkgs.rofi
|
||||
pkgs.neovim
|
||||
pkgs.kitty
|
||||
pkgs.fastfetch
|
||||
pkgs.pavucontrol
|
||||
pkgs.btop
|
||||
|
||||
pkgs.discord
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue