dotfiles/flake.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

2022-09-26 20:28:35 +00:00
{
2023-07-30 22:01:46 +00:00
inputs = {
home-manager.inputs.nixpkgs.follows = "nixpkgs";
2023-10-03 22:04:08 +00:00
home-manager.url = "github:nix-community/home-manager/release-23.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
2023-07-30 22:01:46 +00:00
};
2022-09-26 20:28:35 +00:00
outputs = inputs@{ flake-parts, self, ... }:
let
system = "x86_64-linux";
username = "opdavies";
2023-10-03 22:04:08 +00:00
nixos-system = import ./system/nixos { inherit inputs self system username; };
wsl-system = import ./system/wsl2 { inherit inputs self system username; };
in
2023-05-03 23:04:02 +00:00
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" ];
perSystem = { pkgs, self', ... }: {
packages = {
opdavies-nvim = pkgs.vimUtils.buildVimPlugin {
name = "opdavies-nvim";
src = ./config/neovim;
};
};
2023-05-03 23:04:02 +00:00
formatter = pkgs.nixpkgs-fmt;
};
2023-05-03 23:04:02 +00:00
flake = {
nixosConfigurations = {
nixedo = nixos-system { desktop = true; };
};
2022-09-27 06:37:57 +00:00
2023-05-03 23:04:02 +00:00
homeConfigurations = {
wsl2 = wsl-system;
};
2022-09-27 06:37:57 +00:00
};
2022-09-26 20:28:35 +00:00
};
}