2024-03-06 18:07:55 -05:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../common.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
home.username = "nixos";
|
|
|
|
home.homeDirectory = "/home/nixos";
|
2024-03-06 18:15:25 -05:00
|
|
|
|
|
|
|
# Packages that should be installed to the user profile.
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
vscode
|
|
|
|
gh
|
|
|
|
git
|
|
|
|
wget
|
|
|
|
];
|
|
|
|
}
|