dotfiles/nix/flake.nix

42 lines
992 B
Nix
Raw Normal View History

{
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 16:57:23 -05:00
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
nixpkgs,
home-manager,
2024-03-19 16:57:23 -05:00
nixvim,
...
}: 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-18 23:12:35 -05:00
modules = [
./home.nix
2024-03-19 16:57:23 -05:00
nixvim.homeManagerModules.nixvim
2024-03-18 23:12:35 -05:00
];
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
};
};
}