33 lines
470 B
Nix
33 lines
470 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./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";
|
|
};
|
|
|
|
home.file.".xinitrc" = {
|
|
text = ''
|
|
exec dbus-run-session -- kutu.rb
|
|
'';
|
|
executable = true;
|
|
};
|
|
|
|
home.stateVersion = "26.05";
|
|
}
|