20 lines
223 B
Nix
Executable file
20 lines
223 B
Nix
Executable file
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./home.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
nicotine-plus
|
|
];
|
|
|
|
home = {
|
|
username = "bolt";
|
|
homeDirectory = "/home/bolt";
|
|
};
|
|
}
|