feat(nix): Move nix language packages to languages/nix
This commit is contained in:
parent
0175bab947
commit
73e969d5ed
3 changed files with 8 additions and 2 deletions
|
@ -46,8 +46,6 @@
|
||||||
systemd.user.startServices = true;
|
systemd.user.startServices = true;
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
nixfmt-rfc-style
|
|
||||||
nil
|
|
||||||
just
|
just
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./javascript.nix
|
./javascript.nix
|
||||||
./go.nix
|
./go.nix
|
||||||
|
./nix.nix
|
||||||
./php.nix
|
./php.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
7
home/languages/nix.nix
Normal file
7
home/languages/nix.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
nixfmt-rfc-style
|
||||||
|
nil
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue