initial commit

This commit is contained in:
PygmySurfer 2026-01-31 23:30:39 -04:00
commit 053d566288
8 changed files with 585 additions and 0 deletions

48
home/default.nix Normal file
View file

@ -0,0 +1,48 @@
{ config, pkgs, lib, ... }:
{
home.username = "klesperance";
home.homeDirectory = "/home/klesperance";
home.packages = with pkgs; [
];
programs.git = {
enable = true;
settings = {
user.name = "PygmySurfer";
user.email = "github@sysrq.ca";
};
};
programs.bash = {
enable = true;
enableCompletion = true;
};
programs.zsh = {
enable = true;
};
catppuccin = {
starship.enable = true;
};
programs.starship = {
enable = true;
enableZshIntegration = true;
enableBashIntegration = true;
# settings = lib.mkMerge [
# (builtins.fromTOML
# (builtins.readFile "${pkgs.starship}/share/starship/presets/catppuccin-powerline.toml"
# ))
# {
# # here goes my custom configurations
# palette = lib.mkForce "catppuccin_frappe";
# }
# ];
};
home.stateVersion = "25.11";
}