18 lines
229 B
Nix
18 lines
229 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
home = {
|
|
packages = with pkgs; [
|
|
discord
|
|
customscripts
|
|
mpd_discord_richpresence
|
|
qbittorrent
|
|
];
|
|
};
|
|
}
|