Files
dotfiles/home/default.nix
T
2026-07-07 19:23:46 +01:00

38 lines
545 B
Nix

{ pkgs, ... }:
{
imports = [
./btop
./dunst
./eza
./fastfetch
./fish
./kitty
./nvim
./picom
./rofi
];
home.username = "me";
home.homeDirectory = "/home/me";
programs.git = {
enable = true;
settings.user.name = "Syed Daanish";
settings.user.email = "me@syedm.dev";
};
xsession = {
enable = true;
windowManager.command = "kutu.rb";
};
home.file.".xinitrc".text = ''
if [ -f ~/.xsession ]; then
exec ~/.xsession
fi
'';
home.stateVersion = "26.05";
}