10 lines
147 B
Nix
10 lines
147 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
./home.nix
|
|
];
|
|
|
|
home = {
|
|
username = "bolt";
|
|
homeDirectory = "/home/bolt";
|
|
};
|
|
}
|