nixcfg/home/dustin/default.nix

12 lines
212 B
Nix
Raw Normal View History

2024-03-01 23:52:03 -05:00
{ config, pkgs, ... }:
{
imports = [
../common.nix
];
2024-03-01 23:52:03 -05:00
# TODO please change the username & home directory to your own
home.username = "dustin";
home.homeDirectory = "/home/dustin";
}