feat(nix): Move nix language packages to languages/nix

This commit is contained in:
punkfairie 2024-11-04 21:31:25 -08:00
parent 0175bab947
commit 73e969d5ed
3 changed files with 8 additions and 2 deletions

View file

@ -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
]; ];

View file

@ -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
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
nixfmt-rfc-style
nil
];
}