nvim: now support all declared languages

nix-components
pegasust 2022-11-07 18:25:04 +00:00
parent 09af605f44
commit 0146737743
2 changed files with 13 additions and 3 deletions

View File

@ -15,11 +15,21 @@
in { in {
homeConfigurations.nixos = home-manager.lib.homeManagerConfiguration { homeConfigurations.nixos = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
modules = [./home.nix]; username = "nixos";
homeDirectory = "/home/nixos";
modules = [./home.nix];
}; };
homeConfigurations.ubuntu_admin = home-manager.lib.homeManagerConfiguration { homeConfigurations.ubuntu_admin = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
modules = [./home.nix]; username = "ubuntu_admin";
homeDirectory = "/home/ubuntu_admin";
modules = [./home.nix];
};
homeConfigurations.hwtr = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
username = "hwtr";
homeDirectory = "/home/hwtr";
modules = [./home.nix];
}; };
}; };
} }

View File

@ -5,7 +5,7 @@
home.packages = [ home.packages = [
pkgs.htop pkgs.ripgrep pkgs.gcc pkgs.fd pkgs.zk pkgs.unzip pkgs.htop pkgs.ripgrep pkgs.gcc pkgs.fd pkgs.zk pkgs.unzip
pkgs.nodePackages.npm pkgs.rustc pkgs.cargo pkgs.rustc pkgs.cargo pkgs.nodejs-18_x
]; ];
home.stateVersion = "22.05"; home.stateVersion = "22.05";
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;