Add usefull stuff for development
This commit is contained in:
parent
27504b1dbc
commit
e38151411a
1 changed files with 27 additions and 5 deletions
|
|
@ -16,13 +16,35 @@
|
|||
};
|
||||
|
||||
# Extra packages
|
||||
environment.systemPackages = with pkgs; [
|
||||
environment = {
|
||||
|
||||
systemPackages = with pkgs; [
|
||||
direnv
|
||||
git
|
||||
just
|
||||
zellij
|
||||
];
|
||||
|
||||
interactiveShellInit = ''
|
||||
alias j='just'
|
||||
'';
|
||||
};
|
||||
|
||||
# For VSCode Remote Development
|
||||
programs.nix-ld.enable = true;
|
||||
programs = {
|
||||
|
||||
nix-ld.enable = true;
|
||||
starship = {
|
||||
enable = true;
|
||||
# custom settings
|
||||
settings = {
|
||||
add_newline = false;
|
||||
aws.disabled = true;
|
||||
gcloud.disabled = true;
|
||||
line_break.disabled = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
system.stateVersion = "24.11";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue