This commit is contained in:
alsaiduq-lab 2026-01-01 17:32:16 -07:00
parent 7a098f0027
commit a05422ff0d
8 changed files with 41 additions and 47 deletions

View file

@ -1,9 +1,6 @@
{
pkgs,
config,
lib,
hyprlanddots,
nvimDotfiles,
inputs,
...
}: {
@ -26,12 +23,12 @@
./modules/ani-cli.nix
./modules/quickshell.nix
./modules/cava.nix
./modules/rgb.nix
./modules/imagemagick.nix
inputs.dankMaterialShell.homeModules.dank-material-shell
./modules/viv.nix
./modules/godot.nix
./modules/gremlin.nix
./modules/udiskie.nix
];
home.username = "${config.theme.user}";
@ -39,14 +36,8 @@
home.stateVersion = "25.11";
programs.home-manager.enable = true;
home.enableNixpkgsReleaseCheck = false;
xdg.mime.enable = false;
# TODO: move these somewhere else; undecided
home.packages = with pkgs; [
kdePackages.dolphin
voicevox
vkbasalt
hashcat
libretranslate
];
#home.packages = with pkgs; [
#];
}

View file

@ -1,5 +1,7 @@
{pkgs, ...}: {
home.packages = with pkgs; [
desktop-gremlin
voicevox
libretranslate
];
}

View file

@ -10,16 +10,18 @@
gh
diff-so-fancy
];
programs.git = {
enable = true;
includes = [
{path = "${config.home.homeDirectory}/nix/.secrets/.git-config";}
{path = "${config.home.homeDirectory}/nix/.secrets/.gitconfig";}
];
settings = {
user.name = "alsaiduq-lab";
user.email = "riiidge.racer@gmail.com";
credential.helper = "store --file=${config.home.homeDirectory}/nix/.secrets/.git-credentials";
init.defaultBranch = "master";
push.autoSetupRemote = true;
pull.rebase = true;
core.pager = "diff-so-fancy | less --tabs=4 -RF";
interactive.diffFilter = "diff-so-fancy --patch";
};
};
}

View file

@ -10,6 +10,7 @@
dgop
ddcutil
cliphist
kdePackages.dolphin
];
home.sessionPath = ["${pkgs.quickshell}/bin"];
}

View file

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