Move Marauder dev configs into a separate module
This commit is contained in:
parent
e22915119e
commit
d3f46bf7c5
2 changed files with 22 additions and 17 deletions
21
hosts/marauder/dev.nix
Normal file
21
hosts/marauder/dev.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.variables = {
|
||||
EDITOR = "nano";
|
||||
VISUAL = "code --wait";
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
vscode
|
||||
kotlin
|
||||
rustup
|
||||
pyenv
|
||||
gcc
|
||||
nixd
|
||||
nixpkgs-fmt
|
||||
];
|
||||
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue