dotfiles/flake.nix

65 lines
1.4 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";
home-manager.url = "github:nix-community/home-manager/release-24.05";
2024-09-21 08:58:08 +00:00
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
2023-07-30 22:01:46 +00:00
};
2022-09-26 20:28:35 +00:00
outputs =
2024-09-21 08:58:08 +00:00
{
home-manager,
nixos-hardware,
nixpkgs,
self,
...
}@inputs:
2024-03-18 20:33:28 +00:00
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
2024-03-18 20:33:28 +00:00
username = "opdavies";
2024-06-15 11:52:54 +00:00
mkNixos = import ./lib/nixos {
inherit
inputs
2024-09-21 08:58:08 +00:00
nixos-hardware
2024-06-15 11:52:54 +00:00
pkgs
self
username
;
};
2024-03-18 20:33:28 +00:00
mkWsl = import ./lib/wsl2 { inherit inputs self username; };
2024-02-24 10:21:53 +00:00
2024-05-06 13:36:44 +00:00
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;
};
};
2024-03-18 20:33:28 +00:00
formatter.${system} = pkgs.nixfmt-rfc-style;
nixosConfigurations = {
lemp11 = mkNixos {
desktop = true;
hostname = "lemp11";
};
2022-09-27 06:37:57 +00:00
};
homeConfigurations = {
wsl2 = mkWsl { system = "x86_64-linux"; };
};
2022-09-26 20:28:35 +00:00
};
}