13 lines
161 B
Nix
13 lines
161 B
Nix
{ config, ... }:
|
|
|
|
let
|
|
username = config.chvp.username;
|
|
in
|
|
{
|
|
imports = [
|
|
./emacs
|
|
./nix
|
|
];
|
|
|
|
users.users.${username}.home = "/Users/${username}";
|
|
}
|