modularizing

This commit is contained in:
Matt Nish-Lapidus 2025-03-12 10:39:42 -04:00
parent 8feca8cf94
commit 887f0b2bb1
7 changed files with 70 additions and 130 deletions

View file

@ -21,28 +21,13 @@
]
(with pkgs; [
# sambaFull
dconf
# xorg.libX11
# xorg.libxcb
# freetype
# alsa-utils
# alsa-oss
# dbus
cifs-utils
sops
(btop.override { cudaSupport = true; rocmSupport = true; })
ispell
(aspellWithDicts (dicts: with dicts; [ en en-computers en-science es fr ]))
texlive.combined.scheme-full
# spice
# spice-gtk
# spice-protocol
# virt-viewer
# borgbackup
])
];
@ -102,45 +87,6 @@
pandoc.enable = true;
password-store.enable = true;
git = {
enable = true;
lfs = {
enable = true;
};
userEmail = "matt@emenel.ca";
userName = "Matt Nish-Lapidus";
ignores = [
".DS_Store"
];
extraConfig = {
core = {
editor = "$EDITOR";
pager = "${pkgs.delta}/bin/delta";
};
interactive = {
diffFilter = "${pkgs.delta}/bin/delta --color-only";
};
delta = {
navigate = true;
dark = true;
line-numbers = true;
side-by-side = true;
};
merge = {
conflictstyle = "zdiff3";
};
init = {
defaultBranch = "main";
};
};
aliases = {
co = "checkout";
cm = "commit -m";
aa = "add .";
p = "push";
};
};
borgmatic = {
enable = true;
backups = {

View file

@ -1,5 +0,0 @@
#!/usr/bin/env fish
function beet-import --description 'import new music on media server from the import dir'
ssh media@media-server -x "beet import -amw ~/import/"
end