mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
- Split kitty to it's own file - Updated flake.nix to support multiple systems - Updated flake.lock
24 lines
539 B
Nix
24 lines
539 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
# mac-app-util-src = builtins.fetchTarball {
|
|
# url = "https://github.com/hraban/mac-app-util/archive/master.tar.gz";
|
|
# sha256 = "1w80vjcnaysjlzxsp3v4pxq4yswbjvxs8ann2bk0m7rkjljnzz6m";
|
|
# };
|
|
# mac-app-util = import mac-app-util-src {};
|
|
in {
|
|
imports = [
|
|
../common.nix
|
|
../kitty.nix
|
|
# mac-app-util.homeManagerModules.default
|
|
];
|
|
|
|
home.username = lib.mkForce "tyler.mayoff";
|
|
home.homeDirectory = lib.mkForce "/Users/tyler.mayoff";
|
|
|
|
home.packages = with pkgs; [
|
|
bazel_7
|
|
];
|
|
}
|