Oliver Davies
4f9073757c
Add overlays for additions, modifications and unstable packages, and move each additional plugin into its own additional package.
77 lines
1.5 KiB
Nix
77 lines
1.5 KiB
Nix
{
|
|
inputs = {
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
home-manager.url = "github:nix-community/home-manager/release-24.05";
|
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
|
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
home-manager,
|
|
nixos-hardware,
|
|
nixpkgs,
|
|
self,
|
|
...
|
|
}@inputs:
|
|
let
|
|
inherit (self) outputs;
|
|
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
username = "opdavies";
|
|
|
|
mkNixos = import ./lib/nixos {
|
|
inherit
|
|
inputs
|
|
outputs
|
|
nixos-hardware
|
|
pkgs
|
|
self
|
|
username
|
|
;
|
|
};
|
|
mkWsl = import ./lib/wsl2 {
|
|
inherit
|
|
inputs
|
|
outputs
|
|
self
|
|
username
|
|
;
|
|
};
|
|
|
|
inherit (pkgs) mkShell;
|
|
inherit (pkgs.vimUtils) buildVimPlugin;
|
|
in
|
|
{
|
|
packages.${system} = {
|
|
default = mkShell { buildInputs = with pkgs; [ bashInteractive ]; };
|
|
|
|
opdavies-nvim = buildVimPlugin {
|
|
name = "opdavies-nvim";
|
|
src = ./config/neovim;
|
|
};
|
|
};
|
|
|
|
formatter.${system} = pkgs.nixfmt-rfc-style;
|
|
|
|
overlays = import ./overlays { inherit inputs; };
|
|
|
|
nixosConfigurations = {
|
|
lemp11 = mkNixos {
|
|
desktop = true;
|
|
hostname = "lemp11";
|
|
};
|
|
};
|
|
|
|
homeConfigurations = {
|
|
wsl2 = mkWsl { system = "x86_64-linux"; };
|
|
};
|
|
};
|
|
}
|