2024-12-26 16:55:11 -08:00
|
|
|
{
|
|
|
|
inputs = {
|
2024-12-26 23:08:28 -08:00
|
|
|
nixpkgs.url = "nixpkgs/nixos-24.11";
|
2024-12-26 16:55:11 -08:00
|
|
|
|
|
|
|
home-manager = {
|
2024-12-26 23:08:28 -08:00
|
|
|
url = "github:nix-community/home-manager/release-24.11";
|
2024-12-26 16:55:11 -08:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
outputs = { nixpkgs, home-manager, ... }:
|
|
|
|
let
|
|
|
|
lib = nixpkgs.lib;
|
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = import nixpkgs { inherit system; };
|
|
|
|
in {
|
|
|
|
homeConfigurations = {
|
|
|
|
drew-profile = home-manager.lib.homeManagerConfiguration {
|
|
|
|
inherit pkgs;
|
|
|
|
modules = [ ./home.nix ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|