mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 01:55:13 -05:00
feat: improved justfile
This commit is contained in:
parent
523e604d30
commit
0710d7d059
2 changed files with 22 additions and 19 deletions
|
@ -26,7 +26,6 @@ in
|
||||||
"jellyfin"
|
"jellyfin"
|
||||||
"libvirtd"
|
"libvirtd"
|
||||||
"minecraft"
|
"minecraft"
|
||||||
"navidrome"
|
|
||||||
"netdev"
|
"netdev"
|
||||||
"networkmanager"
|
"networkmanager"
|
||||||
"nextcloud"
|
"nextcloud"
|
||||||
|
@ -49,7 +48,22 @@ in
|
||||||
homeDirectory = "/home/${user0}";
|
homeDirectory = "/home/${user0}";
|
||||||
file = {
|
file = {
|
||||||
"./justfile" = {
|
"./justfile" = {
|
||||||
source = ./files/justfile;
|
text = ''
|
||||||
|
vpn:
|
||||||
|
sudo protonvpn c --c CA
|
||||||
|
|
||||||
|
vpnoff:
|
||||||
|
sudo protonvpn d
|
||||||
|
|
||||||
|
rebuild:
|
||||||
|
nixos-rebuild switch --use-remote-sudo --flake ~/Files/Projects/dotfiles#${hostname} --show-trace
|
||||||
|
|
||||||
|
elm:
|
||||||
|
cd ~/Files/Projects/website/frontend ; elm-land server
|
||||||
|
|
||||||
|
server:
|
||||||
|
ssh ${devices.ceres.ip.address0}
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
"./Files/Scripts/list.sh" = {
|
"./Files/Scripts/list.sh" = {
|
||||||
source = ./files/list.sh;
|
source = ./files/list.sh;
|
||||||
|
@ -59,9 +73,6 @@ in
|
||||||
source = ./files/loop.sh;
|
source = ./files/loop.sh;
|
||||||
executable = true;
|
executable = true;
|
||||||
};
|
};
|
||||||
"./.config/vesktop/themes/macchiato-theme.css" = {
|
|
||||||
source = ./files/themes/vesktop/macchiato-theme.css;
|
|
||||||
};
|
|
||||||
"./.config/scripts/get_weather.sh" = {
|
"./.config/scripts/get_weather.sh" = {
|
||||||
source = ./files/get_weather.sh;
|
source = ./files/get_weather.sh;
|
||||||
executable = true;
|
executable = true;
|
||||||
|
@ -70,6 +81,12 @@ in
|
||||||
source = ./files/wallpaper;
|
source = ./files/wallpaper;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
"./.config/vesktop/themes/macchiato-theme.css" = {
|
||||||
|
source = ./files/themes/vesktop/macchiato-theme.css;
|
||||||
|
};
|
||||||
|
"./.config/qBittorrent/themes/catppuccin-mocha.qbtheme" = {
|
||||||
|
source = ./files/themes/qbittorrent/macchiato.qbtheme;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
VISUAL = lib.getExe pkgs.zed-editor;
|
VISUAL = lib.getExe pkgs.zed-editor;
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
vpn:
|
|
||||||
sudo protonvpn c --c CA
|
|
||||||
|
|
||||||
vpnoff:
|
|
||||||
sudo protonvpn d
|
|
||||||
|
|
||||||
rebuild:
|
|
||||||
nixos-rebuild switch --use-remote-sudo --flake ~/Files/Projects/dotfiles#mars --show-trace
|
|
||||||
|
|
||||||
elm:
|
|
||||||
cd ~/Files/Projects/website/frontend; elm-land server
|
|
||||||
|
|
||||||
server:
|
|
||||||
ssh 192.168.50.140
|
|
Loading…
Add table
Add a link
Reference in a new issue