initial commit
This commit is contained in:
commit
053d566288
8 changed files with 585 additions and 0 deletions
48
home/default.nix
Normal file
48
home/default.nix
Normal 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue