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