first commit

This commit is contained in:
Mars 2024-05-07 03:17:46 -04:00
commit f1c5038fd7
15 changed files with 2481 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{
lib,
pkgs,
inputs,
...
}: {
home = {
packages = with pkgs;
[
grc
jamesdsp
vesktop
]
++ (with inputs; [
nixvim.packages.${pkgs.system}.default
])
++ (with inputs.chaotic.packages.${pkgs.system}; [
distrobox_git
]);
stateVersion = "24.05";
};
programs = {
nheko.enable = true;
nix-index-database.comma.enable = true;
nix-index.enable = true;
direnv = {
enable = true;
nix-direnv.enable = true;
};
};
nix.package = lib.mkForce pkgs.nixVersions.git;
}