2024-03-18 23:37:20 +01:00
|
|
|
{
|
|
|
|
description = "Home Manager configuration";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
# Specify the source of Home Manager and Nixpkgs.
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-03-19 22:57:23 +01:00
|
|
|
nixvim = {
|
|
|
|
url = "github:nix-community/nixvim";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-03-18 23:37:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = {
|
|
|
|
nixpkgs,
|
|
|
|
home-manager,
|
2024-03-19 22:57:23 +01:00
|
|
|
nixvim,
|
2024-03-18 23:37:20 +01:00
|
|
|
...
|
|
|
|
}: let
|
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in {
|
|
|
|
formatter.x86_64-linux = pkgs.alejandra;
|
|
|
|
homeConfigurations."gabe" = home-manager.lib.homeManagerConfiguration {
|
|
|
|
inherit pkgs;
|
|
|
|
|
|
|
|
# Specify your home configuration modules here, for example,
|
|
|
|
# the path to your home.nix.
|
2024-03-19 05:12:35 +01:00
|
|
|
modules = [
|
|
|
|
./home.nix
|
2024-03-19 22:57:23 +01:00
|
|
|
nixvim.homeManagerModules.nixvim
|
2024-03-19 05:12:35 +01:00
|
|
|
];
|
2024-03-18 23:37:20 +01:00
|
|
|
|
|
|
|
# Optionally use extraSpecialArgs
|
|
|
|
# to pass through arguments to home.nix
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|