This commit is contained in:
Mars 2024-05-07 03:23:55 -04:00
parent 0301f7dc24
commit 8e44992e00
14 changed files with 2480 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;
}