1
0
Files
nix-ebay-home/flake.nix

34 lines
812 B
Nix
Raw Normal View History

2025-07-09 13:39:51 -07:00
{
description = "Home Manager configuration for tbingmann";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
2025-07-18 19:49:06 -07:00
2025-07-09 13:39:51 -07:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-07-18 19:49:06 -07:00
tb-shared = {
url = "git+https://g.t1.xyz/tb/nix-shared.git";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-07-09 13:39:51 -07:00
};
2025-07-18 19:49:06 -07:00
outputs = { nixpkgs, home-manager, tb-shared, ... }:
2025-07-09 13:39:51 -07:00
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations."tbingmann" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
2025-07-18 19:49:06 -07:00
2025-07-09 13:39:51 -07:00
# Specify the path to your home configuration module
2025-07-18 19:49:06 -07:00
modules = [
tb-shared.homeManagerModules.default
./home.nix
];
2025-07-09 13:39:51 -07:00
};
};
}