♻️ [shared] Moved files to base shared directory
This commit is contained in:
13
shared/base/modules/development/default.nix
Normal file
13
shared/base/modules/development/default.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./formatters.nix
|
||||
./nix.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
just
|
||||
];
|
||||
}
|
10
shared/base/modules/development/formatters.nix
Normal file
10
shared/base/modules/development/formatters.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
nodePackages.prettier
|
||||
nixfmt-rfc-style
|
||||
treefmt
|
||||
shfmt
|
||||
];
|
||||
}
|
8
shared/base/modules/development/nix.nix
Normal file
8
shared/base/modules/development/nix.nix
Normal file
@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
nixd
|
||||
nil
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user