🚚 refactor(languages): Separate out programming env config
This commit is contained in:
parent
090954cd94
commit
db0f991fe1
5 changed files with 9 additions and 1 deletions
|
@ -53,6 +53,7 @@
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./appearance
|
./appearance
|
||||||
|
./languages
|
||||||
./profile
|
./profile
|
||||||
./programs
|
./programs
|
||||||
./services
|
./services
|
||||||
|
|
8
home/languages/default.nix
Normal file
8
home/languages/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./javascript.nix
|
||||||
|
./go.nix
|
||||||
|
./php.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -10,7 +10,6 @@
|
||||||
./fish.nix
|
./fish.nix
|
||||||
./fzf.nix
|
./fzf.nix
|
||||||
./gh.nix
|
./gh.nix
|
||||||
./go.nix
|
|
||||||
./hyfetch.nix
|
./hyfetch.nix
|
||||||
./lazygit.nix
|
./lazygit.nix
|
||||||
./less.nix
|
./less.nix
|
||||||
|
|
Loading…
Reference in a new issue