nixcfg/home/nixos/default.nix

19 lines
296 B
Nix
Raw Normal View History

{ 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
];
}