17 lines
217 B
Nix
17 lines
217 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../../../user
|
|
];
|
|
|
|
home.username = "u2h";
|
|
home.packages = [
|
|
pkgs.opentabletdriver
|
|
inputs.nix-gaming.packages."x86_64-linux".osu-stable
|
|
];
|
|
}
|