13 lines
315 B
Nix
13 lines
315 B
Nix
|
{ config, pkgs, inputs, ... }:
|
||
|
|
||
|
let
|
||
|
system = pkgs.stdenv.hostPlatform.system;
|
||
|
unofficial-homestuck-collection = inputs.unofficial-homestuck-collection.packages.${system};
|
||
|
in {
|
||
|
home-manager.users.${config.user} = {
|
||
|
home.packages = [
|
||
|
unofficial-homestuck-collection.unofficial-homestuck-collection
|
||
|
];
|
||
|
};
|
||
|
}
|