[Organizations] Reorganizes files a bit, making features/development
This commit is contained in:
15
home-manager/features/development/development.nix
Normal file
15
home-manager/features/development/development.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
# Dev apps
|
||||
../git.nix
|
||||
../shell.nix
|
||||
../terminal.nix
|
||||
../neovim
|
||||
../ssh.nix
|
||||
|
||||
# Languages
|
||||
./nix.nix
|
||||
./lua.nix
|
||||
];
|
||||
}
|
||||
6
home-manager/features/development/haskell.nix
Normal file
6
home-manager/features/development/haskell.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
ghc
|
||||
];
|
||||
}
|
||||
6
home-manager/features/development/lua.nix
Normal file
6
home-manager/features/development/lua.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
stylua # Formatter
|
||||
];
|
||||
}
|
||||
11
home-manager/features/development/nix.nix
Normal file
11
home-manager/features/development/nix.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
# Useful for getting the import information from github info for flakes.
|
||||
nix-prefetch-github
|
||||
|
||||
nixfmt-rfc-style # Formatter
|
||||
nil # Language Server
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user