Files
dotfiles/home/natto.nix
2021-04-30 19:49:57 +05:30

18 lines
229 B
Nix

{ config, pkgs, ... }:
{
nixpkgs = {
config = {
allowUnfree = true;
};
};
home = {
packages = with pkgs; [
discord
customscripts
mpd_discord_richpresence
qbittorrent
];
};
}