.dotfiles/dot_config/flake/home/guidebolt/guidebolt.nix
2025-02-04 15:18:06 -05:00

21 lines
250 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [../common.nix];
home = {
username = "tyler";
homeDirectory = "/home/tyler";
packages = with pkgs; [
# clang_17
# clang-tools
just
];
};
}