dotfiles/_macos/flake.nix

27 lines
787 B
Nix
Raw Normal View History

2023-01-01 20:49:20 +00:00
{
2023-01-02 00:47:41 +00:00
description = "Tyrel Nix";
2023-01-01 20:49:20 +00:00
2023-01-02 00:47:41 +00:00
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-22.11-darwin";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
darwin.url = "github:lnl7/nix-darwin";
darwin.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, home-manager, darwin }: {
2023-01-02 01:08:14 +00:00
defaultPackage.x86_64-darwin = home-manager.defaultPackage.x86_64-darwin;
2023-01-02 03:44:45 +00:00
2023-01-02 00:47:41 +00:00
darwinConfigurations."ts-tl-mbp" = darwin.lib.darwinSystem {
system = "x86_64-darwin";
2023-01-02 03:24:23 +00:00
modules = [
home-manager.darwinModules.home-manager
2023-01-02 05:04:28 +00:00
../hosts/ts-tl-mbp/default.nix
../hosts/ts-tl-mbp/home-manager.nix
../hosts/ts-tl-mbp/brew.nix
2023-01-02 15:54:36 +00:00
../hosts/_common/fonts.nix
2023-01-02 03:24:23 +00:00
];
2023-01-02 00:47:41 +00:00
};
2023-01-01 20:49:20 +00:00
};
2023-01-01 21:00:23 +00:00
2023-01-01 20:49:20 +00:00
}