compatibility modifications for sephiroth

This commit is contained in:
2024-11-03 22:44:23 -05:00
parent 9a435da5e3
commit ea90e55cbb
13 changed files with 45 additions and 117 deletions

View File

@ -1,63 +0,0 @@
{pkgs, ...}: {
home.packages = with pkgs; [
nnn # terminal file manager
# archives
zip
xz
unzip
p7zip
# utils
zellij
tmux
bat
lazygit
bottom
ripgrep
jq
yq-go
fzf
fh
aria2
yt-dlp
imv
xdg-utils
# misc
cowsay
file
which
tree
gnutar
gnupg
nerdfonts
zoxide
babelfish
# language-specific package managers
nodejs
cargo
python3
# nix specific stuff
nixd
deadnix
alejandra
statix
# productivity
# iterm2
discord
betterdiscordctl
vesktop
obsidian
vscode
weechat
# iamb
# ollama
# games?
# prismlauncher
];
}

View File

@ -15,7 +15,7 @@ in {
imports = map (module: import module {inherit lib pkgs dirs userName userEmail;}) [
./atuin.nix
./shell.nix
./core.nix
./packages
./git.nix
./starship.nix
./eza.nix
@ -43,7 +43,7 @@ in {
XDG_STATE_HOME = "$HOME/.local/state";
};
pointerCursor = {
pointerCursor = lib.mkIf pkgs.stdenv.isLinux {
gtk.enable = true;
package = pkgs.catppuccin-cursors.mochaDark;
name = "catppuccin-mocha-dark-cursors";

View File

@ -21,8 +21,6 @@
fh
aria2
yt-dlp
imv
xdg-utils
obsidian
vscode
weechat

View File

@ -4,7 +4,6 @@
...
}: {
home.packages = lib.mkIf pkgs.stdenv.isDarwin (with pkgs; [
iterm2
discord
ollama
]);

View File

@ -7,5 +7,6 @@
imv
betterdiscordctl
vesktop
xdg-utils
]);
}