From 31089f9cfeeb862bf788c9a9e8f006091b4ec99d Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 24 Feb 2026 10:24:53 +0100 Subject: [PATCH 1/6] updates statusline --- modules/nixvim/statusline.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/nixvim/statusline.nix b/modules/nixvim/statusline.nix index 2abef71..3d04278 100644 --- a/modules/nixvim/statusline.nix +++ b/modules/nixvim/statusline.nix @@ -42,8 +42,6 @@ } "encoding" ]; - lualine_c = [ ]; - lualine_x = [ ]; lualine_y = [ "branch" "diff" @@ -51,7 +49,6 @@ ]; lualine_z = [ "location" - "progress" ]; }; }; From 2d6fd819fef208eca7a5162ff7ffa78d3977f8eb Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 24 Feb 2026 10:25:45 +0100 Subject: [PATCH 2/6] updates statusline --- modules/nixvim/statusline.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixvim/statusline.nix b/modules/nixvim/statusline.nix index 3d04278..9fa7c72 100644 --- a/modules/nixvim/statusline.nix +++ b/modules/nixvim/statusline.nix @@ -31,7 +31,7 @@ __unkeyed-1 = "filename"; file_status = true; newfile_status = false; - path = 1; + path = 4; shorting_target = 120; symbols = { modified = "[+]"; From f51d9a610f061e4cad9871cad3a548d86d2aa322 Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 24 Feb 2026 10:28:08 +0100 Subject: [PATCH 3/6] fixes command --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 45e0222..a6ab3df 100644 --- a/Justfile +++ b/Justfile @@ -26,7 +26,7 @@ gc: # dnsc-air mre: - git add . && git commit -am "new revision" && darwin-rebuild switch --flake . + if ! git diff --quiet || ! git diff --staged --quiet; then git add . && git commit -am "new revision"; fi && darwin-rebuild switch --flake . mup: darwin-rebuild switch --recreate-lock-file --flake . From cfbeef39908dad5a3d1bfe6f27dee6b45df039fe Mon Sep 17 00:00:00 2001 From: Dennis Schoepf Date: Wed, 25 Feb 2026 19:13:11 +0100 Subject: [PATCH 4/6] updates dnsc-machine --- hosts/dnsc-machine/default.nix | 3 +++ modules/base/default.nix | 1 + 2 files changed, 4 insertions(+) diff --git a/hosts/dnsc-machine/default.nix b/hosts/dnsc-machine/default.nix index 1b11b65..6bc9aaf 100644 --- a/hosts/dnsc-machine/default.nix +++ b/hosts/dnsc-machine/default.nix @@ -76,6 +76,9 @@ services.udisks2.enable = true; services.tuned.enable = true; services.upower.enable = true; + services.udev.package = with pkgs; [ + vial + ]; system.stateVersion = "25.05"; } diff --git a/modules/base/default.nix b/modules/base/default.nix index 547ef33..288839b 100644 --- a/modules/base/default.nix +++ b/modules/base/default.nix @@ -53,5 +53,6 @@ nix-prefetch-github dua opencode + vial ]; } From 9b4b99523252b6c5bc7994dd26fac822a9d753ed Mon Sep 17 00:00:00 2001 From: Dennis Schoepf Date: Wed, 25 Feb 2026 19:14:25 +0100 Subject: [PATCH 5/6] updates just --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index a6ab3df..37e72a3 100644 --- a/Justfile +++ b/Justfile @@ -1,5 +1,5 @@ deploy: - git add . && git commit -am "new revision" && nixos-rebuild switch --flake . + nixos-rebuild switch --flake . debug: nixos-rebuild switch --flake . --show-trace --verbose From d5e5dac6935150499766c4e9e1b4da3386d29219 Mon Sep 17 00:00:00 2001 From: Dennis Schoepf Date: Wed, 25 Feb 2026 19:14:56 +0100 Subject: [PATCH 6/6] fixes udev --- hosts/dnsc-machine/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/dnsc-machine/default.nix b/hosts/dnsc-machine/default.nix index 6bc9aaf..0b15d4a 100644 --- a/hosts/dnsc-machine/default.nix +++ b/hosts/dnsc-machine/default.nix @@ -76,7 +76,7 @@ services.udisks2.enable = true; services.tuned.enable = true; services.upower.enable = true; - services.udev.package = with pkgs; [ + services.udev.packages = with pkgs; [ vial ];