mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 10:33:55 -05:00
19 lines
296 B
Nix
19 lines
296 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../common.nix
|
|
];
|
|
|
|
home.username = "nixos";
|
|
home.homeDirectory = "/home/nixos";
|
|
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [
|
|
vscode
|
|
gh
|
|
git
|
|
wget
|
|
];
|
|
}
|