home-manager initial commit

This commit is contained in:
2021-04-30 19:49:57 +05:30
parent fb7e5cafce
commit da3ef21ccd
6 changed files with 100 additions and 13 deletions

17
home/natto.nix Normal file
View File

@@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
nixpkgs = {
config = {
allowUnfree = true;
};
};
home = {
packages = with pkgs; [
discord
customscripts
mpd_discord_richpresence
qbittorrent
];
};
}