some stuff

This commit is contained in:
2024-10-30 22:41:50 -04:00
parent fbaa38c1a5
commit 50d37c0e6b
6 changed files with 119 additions and 29 deletions

View File

@ -22,6 +22,7 @@
aria2
yt-dlp
imv
xdg-utils
# misc
cowsay

View File

@ -36,12 +36,17 @@ in {
sessionVariables = {
XDG_CURRENT_DESKTOP = "sway";
XDG_SESSION_TYPE = "wayland";
XDG_CONFIG_HOME = "$HOME/.config";
XDG_CACHE_HOME = "$HOME/.cache";
XDG_DATA_HOME = "$HOME/.local/share";
XDG_STATE_HOME = "$HOME/.local/state";
};
pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
package = pkgs.catppuccin-cursors.mochaDark;
name = "catppuccin-mocha-dark-cursors";
size = 22;
};

View File

@ -32,7 +32,8 @@
# common aliases
br = "branch";
co = "checkout";
st = "status";
st = "status -sb";
status = "status -sb";
ls = "log --pretty=format:\"%C(yellow)%h%Cred%d\\\\ %Creset%s%Cblue\\\\ [%cn]\" --decorate";
ll = "log --pretty=format:\"%C(yellow)%h%Cred%d\\\\ %Creset%s%Cblue\\\\ [%cn]\" --decorate --numstat";
cm = "commit -m";

View File

@ -1,6 +0,0 @@
{ pkgs, ... }: {
services.shairport-sync = {
enable = pkgs.stdenv.isLinux;
openFirewall = pkgs.stdenv.isLinux;
};
}