revisions

hate nvidia
This commit is contained in:
alsaiduq-lab 2025-12-12 12:11:48 -07:00
parent c4ab484bed
commit 6c3383c44b
8 changed files with 87 additions and 94 deletions

View file

@ -29,6 +29,7 @@
./modules/rgb.nix
./modules/imagemagick.nix
inputs.dankMaterialShell.homeModules.dankMaterialShell.default
./modules/viv.nix
];
home.username = "${config.theme.user}";

View file

@ -17,6 +17,8 @@
{path = "${config.home.homeDirectory}/nix/.secrets/.git-config";}
];
settings = {
user.name = "alsaiduq-lab";
user.email = "riiidge.racer@gmail.com";
credential.helper = "store --file=${config.home.homeDirectory}/nix/.secrets/.git-credentials";
};
};

View file

@ -12,6 +12,4 @@
cliphist
];
home.sessionPath = ["${pkgs.quickshell}/bin"];
programs.dankMaterialShell.enable = true;
}

View file

@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
vivify
];
}