{ config, ... }: {
let
profile = {
username = "johnstclair";
name = "John St. Clair";
collaborative = true;
student = true;
organizations = null;
learning = [
nix # i will always be learning nix
];
};
in
{
users.users.${profile.username} = {
isNormalUser = true;
description = ${profile.name};
organizations = ${profile.organizations};
};
programs.collaborative.enable = ${profile.collaborative};
programs.student.enable = ${profile.student};
}
}
Pinned Loading
-
-
-
johnstclair.github.io
johnstclair.github.io PublicThe files for my personal portfolio website
TypeScript
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.

