neovim lspconfig

This commit is contained in:
Tristan 2023-12-23 15:43:26 +00:00
parent fb5c04a84a
commit 34aaaf63d2
29 changed files with 1705 additions and 1399 deletions

View file

@ -13,24 +13,28 @@
stylix.url = "github:danth/stylix";
};
outputs = { nixpkgs, home-manager, hyprland, stylix, ... } @inputs :
let
system = "x86_64-linux";
lib = nixpkgs.lib;
mkConf = import ./lib/mkconf.nix;
outputs = {
nixpkgs,
home-manager,
hyprland,
stylix,
...
} @ inputs: let
system = "x86_64-linux";
lib = nixpkgs.lib;
mkConf = import ./lib/mkconf.nix;
user = "tristan";
userName = "Tristan Beedell";
in
{
nixosConfigurations = {
zenix = mkConf "zenix" {
inherit inputs nixpkgs system user userName home-manager;
};
FCS-Tristan-Nixbook = mkConf "work" {
inherit inputs nixpkgs system user userName home-manager;
work = true;
};
user = "tristan";
userName = "Tristan Beedell";
in {
nixosConfigurations = {
zenix = mkConf "zenix" {
inherit inputs nixpkgs system user userName home-manager;
};
FCS-Tristan-Nixbook = mkConf "work" {
inherit inputs nixpkgs system user userName home-manager;
work = true;
};
};
};
}