mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 16:58:34 -05:00
21 lines
250 B
Nix
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
|
|
];
|
|
};
|
|
}
|