From eebdbe7581af244f347d333f3dd6ab122acca1cf Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Thu, 5 Dec 2024 14:46:52 +0100 Subject: [PATCH 1/2] accidentally removed davfs, re-added it --- nixos/hosts/wheatley/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/hosts/wheatley/configuration.nix b/nixos/hosts/wheatley/configuration.nix index 906e808..4e6b8da 100644 --- a/nixos/hosts/wheatley/configuration.nix +++ b/nixos/hosts/wheatley/configuration.nix @@ -78,6 +78,7 @@ path = "/etc/davfs2/secrets"; }; + services.davfs2.enable = true; systemd.mounts = [ { enable = true; From fdceea44d6c9303fd0301064c4c53c8db2ec2c22 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Thu, 5 Dec 2024 14:55:32 +0100 Subject: [PATCH 2/2] add just push to justfile for more git automation --- justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/justfile b/justfile index a6da660..887be5e 100644 --- a/justfile +++ b/justfile @@ -13,3 +13,8 @@ update: clean: sudo nix-collect-garbage sudo nix-store --optimise + +push: + git add * + read -p "Commit message: " -r message && git commit -m "$message" + git push