34 lines
665 B
Nix
34 lines
665 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./modules/dunst.nix
|
|
./modules/fish.nix
|
|
./modules/ghostty.nix
|
|
./modules/lazygit.nix
|
|
./modules/nvim.nix
|
|
./modules/picom.nix
|
|
./modules/polybar.nix
|
|
./modules/rofi.nix
|
|
./modules/starship.nix
|
|
./modules/zellij.nix
|
|
./modules/ffmpeg.nix
|
|
./modules/emulators.nix
|
|
];
|
|
|
|
home.username = "cobray";
|
|
home.homeDirectory = "/home/cobray";
|
|
home.stateVersion = "24.11";
|
|
programs.home-manager.enable = true;
|
|
home.enableNixpkgsReleaseCheck = false;
|
|
|
|
home.packages = with pkgs; [
|
|
coreutils
|
|
gnused
|
|
gnugrep
|
|
findutils
|
|
yazi
|
|
htop
|
|
btop
|
|
nvtopPackages.full
|
|
arandr
|
|
];
|
|
}
|