1
0

add tb-shared home config

This commit is contained in:
Timo Bingmann
2025-07-18 19:49:06 -07:00
parent 7330ef822c
commit 437425837b
3 changed files with 94 additions and 22 deletions

View File

@@ -3,23 +3,31 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
tb-shared = {
url = "git+https://g.t1.xyz/tb/nix-shared.git";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, home-manager, ... }:
outputs = { nixpkgs, home-manager, tb-shared, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations."tbingmann" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# Specify the path to your home configuration module
modules = [ ./home.nix ];
modules = [
tb-shared.homeManagerModules.default
./home.nix
];
};
};
}