adjusting some scripts and small configs
This commit is contained in:
parent
8bc16bd6f5
commit
fc209bda6d
18 changed files with 372 additions and 81 deletions
|
@ -302,9 +302,12 @@
|
|||
recursive = true;
|
||||
};
|
||||
|
||||
home.file.".config/fish" = {
|
||||
source = ../fish;
|
||||
recursive = true;
|
||||
home.file.".config/fish/config.fish" = {
|
||||
source = ../fish/config.fish;
|
||||
};
|
||||
|
||||
home.file.".config/fish/functions" = {
|
||||
source = ../fish/functions;
|
||||
};
|
||||
|
||||
programs.qutebrowser.enable = true;
|
||||
|
@ -318,6 +321,11 @@
|
|||
recursive = true;
|
||||
};
|
||||
|
||||
home.file.".config/imv" = {
|
||||
source = ../imv;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
home.file.".config/macchina" = {
|
||||
source = ../macchina;
|
||||
recursive = true;
|
||||
|
@ -328,7 +336,20 @@
|
|||
recursive = true;
|
||||
};
|
||||
|
||||
home.file."scripts" = {
|
||||
home.file.".config/alacritty" = {
|
||||
source = ../alacritty;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
home.file.".config/picom.conf" = {
|
||||
source = ../picom.conf;
|
||||
};
|
||||
|
||||
# home.file.".config/networkmanager-dmenu/config.ini" = {
|
||||
# source = ../networkmanager-dmenu/config.ini;
|
||||
# };
|
||||
|
||||
home.file."bin" = {
|
||||
source = ../scripts;
|
||||
recursive = true;
|
||||
};
|
||||
|
@ -351,10 +372,25 @@
|
|||
mkdir = "mkdir -pv";
|
||||
nupd = "update-nix";
|
||||
nupg = "upgrade-nix";
|
||||
suspend = "systemctl suspend";
|
||||
sysuse = "systemctl --user";
|
||||
myip = "curl icanhazip.com";
|
||||
};
|
||||
initExtra = ''
|
||||
macchina
|
||||
pfetch
|
||||
'';
|
||||
};
|
||||
|
||||
|
||||
xdg.desktopEntries = {
|
||||
mpv-slow = {
|
||||
name = "MPV";
|
||||
genericName = "Play from MPV but at normal speed";
|
||||
exec = "alacritty -e mpv --profile=slow %U";
|
||||
terminal = true;
|
||||
categories = [ "Application" ];
|
||||
mimeType = [ "audio/ogg" "audio/mpeg" "audio/opus" "audio/x-opus+ogg" "audio/x-wav" ];
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue