Simplified setup

This commit is contained in:
Weckyy702
2026-01-12 12:03:28 +01:00
parent 0524def0ad
commit 7fd9d83ce1
16 changed files with 81 additions and 2299 deletions

48
home.nix Normal file
View File

@@ -0,0 +1,48 @@
{ config, pkgs, username, ...}: {
home.username = username;
home.homeDirectory = "/home/${username}";
home.packages = with pkgs; [
];
programs.zsh = {
enable = true;
profileExtra = ''
if [ -z "$WAYLAND_DISPLAY" ] && [ "$XDG_VTNR" = 1 ]; then
exec hyprland
fi
'';
autocd = true;
};
programs.neovim = {
enable = true;
defaultEditor = true;
vimdiffAlias = true;
#TODO: nvim config. Maybe nixvim?
};
programs.fzf = {
enable = true;
enableZshIntegration = true;
};
programs.kitty = {
enable = true;
enableGitIntegration = true;
#TODO: kitty config
};
programs.git = {
enable = true;
settings.user = {
email = "weckyy702@gmail.com";
name = "Weckyy702";
};
#TODO: signing
};
#NOTE: MUST be kept up to date with nixpkgs!
home.stateVersion = "25.11";
}