nix-config/home.nix
2025-06-18 23:42:45 +02:00

53 lines
997 B
Nix

{ config, pkgs, ... }:
{
home.username = "smayzy";
home.homeDirectory = "/home/smayzy";
home.stateVersion = "25.05";
home.packages = [
];
home.file = {
".config/fastfetch" = {
source = ./dotfiles/fastfetch;
recursive = true;
force = true;
};
".config/kitty/kitty.conf" = {
source = ./dotfiles/kitty.conf;
force = true;
};
".config/hypr" = {
source = ./dotfiles/hypr-desk;
recursive = true;
force = true;
};
".config/mako/config" = {
source = ./dotfiles/mako/config;
force = true;
};
".config/waybar" = {
source = ./dotfiles/waybar-desk;
recursive = true;
force = true;
};
};
home.sessionVariables = {
EDITOR = "vim";
};
programs.git = {
enable = true;
userName = "smayzy";
userEmail = "smayzy@smayzy.ovh";
extraConfig = {
core.editor = "vim";
core.autocrlf = "input";
};
};
programs.home-manager.enable = true;
}