mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
add terraform and initial programming tools
This commit is contained in:
parent
74e53a3cd1
commit
d0b3be617c
@ -17,5 +17,7 @@ darwin.lib.darwinSystem {
|
|||||||
../../modules/darwin
|
../../modules/darwin
|
||||||
../../modules/applications/alacritty.nix
|
../../modules/applications/alacritty.nix
|
||||||
../../modules/applications/discord.nix
|
../../modules/applications/discord.nix
|
||||||
|
../../modules/programming/terraform.nix
|
||||||
|
../../modules/programming/lua.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
8
modules/programming/lua.nix
Normal file
8
modules/programming/lua.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{ config, pkgs, ... }: {
|
||||||
|
|
||||||
|
home-manager.users.${config.user}.home.packages = with pkgs;
|
||||||
|
[
|
||||||
|
stylua # Lua formatter
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
9
modules/programming/terraform.nix
Normal file
9
modules/programming/terraform.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ config, pkgs, ... }: {
|
||||||
|
|
||||||
|
home-manager.users.${config.user}.home.packages = with pkgs; [
|
||||||
|
terraform # Terraform executable
|
||||||
|
terraform-ls # Language server
|
||||||
|
tflint # Linter
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user