mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 09:35:12 -05:00
feat: added stuff for server
This commit is contained in:
parent
008bc4c011
commit
b212b05864
5 changed files with 45 additions and 1 deletions
|
@ -173,6 +173,7 @@ in
|
|||
imports = builtins.attrValues {
|
||||
inherit (modules)
|
||||
cli
|
||||
tooling
|
||||
;
|
||||
};
|
||||
};
|
||||
|
|
10
home/modules/cli/development/tooling/default.nix
Executable file
10
home/modules/cli/development/tooling/default.nix
Executable file
|
@ -0,0 +1,10 @@
|
|||
let
|
||||
content = builtins.readDir ./.;
|
||||
|
||||
dirContent = builtins.filter (n: content.${n} == "directory") (builtins.attrNames content);
|
||||
|
||||
importList = map (name: ./. + "/${name}") dirContent;
|
||||
in
|
||||
{
|
||||
imports = importList;
|
||||
}
|
16
home/modules/cli/development/tooling/javascript/default.nix
Executable file
16
home/modules/cli/development/tooling/javascript/default.nix
Executable file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs.nodePackages_latest)
|
||||
"@commitlint/config-conventional"
|
||||
dotenv-cli
|
||||
forever
|
||||
nodejs
|
||||
npm
|
||||
typescript-language-server
|
||||
;
|
||||
};
|
||||
}
|
19
templates/elm/flake.lock
generated
19
templates/elm/flake.lock
generated
|
@ -45,10 +45,27 @@
|
|||
"url": "https://github.com/NixOS/nixpkgs/archive/cc2f28000298e1269cea6612cd06ec9979dd5d7f.tar.gz"
|
||||
}
|
||||
},
|
||||
"nixpkgs-stable": {
|
||||
"locked": {
|
||||
"lastModified": 1720535198,
|
||||
"narHash": "sha256-zwVvxrdIzralnSbcpghA92tWu2DV2lwv89xZc8MTrbg=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "205fd4226592cc83fd4c0885a3e4c9c400efabb5",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-23.11",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"flake-parts": "flake-parts",
|
||||
"nixpkgs": "nixpkgs"
|
||||
"nixpkgs": "nixpkgs",
|
||||
"nixpkgs-stable": "nixpkgs-stable"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue