From 171232cb2efda7719a589ac161f56e36a011eefe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geoffrey=20=E2=80=9CFrogeye=E2=80=9D=20Preud=27homme?= Date: Sun, 15 Sep 2024 20:14:47 +0200 Subject: [PATCH 1/2] jj config from curacao --- hm/git/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hm/git/default.nix b/hm/git/default.nix index b7c42cb..9da5aa1 100644 --- a/hm/git/default.nix +++ b/hm/git/default.nix @@ -74,7 +74,10 @@ in jujutsu = { enable = true; settings = { - git.auto-local-bookmark = true; + git = { + auto-local-bookmark = true; + auto-local-branch = true; + }; user = { email = cfg.userEmail; name = cfg.userName; From 01934563a531214d0be3bb98f04aaaa6f168ec30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geoffrey=20=E2=80=9CFrogeye=E2=80=9D=20Preud=27homme?= Date: Sun, 15 Sep 2024 22:19:20 +0200 Subject: [PATCH 2/2] Label printer support Such a good name, Labelle. Glad they didn't go with the AI-generated one. --- hm/common.nix | 1 + os/common.nix | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/hm/common.nix b/hm/common.nix index 114f34e..f0274c6 100644 --- a/hm/common.nix +++ b/hm/common.nix @@ -190,6 +190,7 @@ usbutils dmidecode lshw + labelle # Label printer # Locker (pkgs.writeShellApplication { diff --git a/os/common.nix b/os/common.nix index 713484f..e72bd16 100644 --- a/os/common.nix +++ b/os/common.nix @@ -76,6 +76,11 @@ # on others I sometimes turn it off when unsuspending. logind.extraConfig = "HandlePowerKey=ignore"; + udev.extraRules = '' + # DYMO LabelPOINT 350 + ACTION=="add", SUBSYSTEMS=="usb", ATTRS{idVendor}=="0922", ATTRS{idProduct}=="0015", MODE="0666" + ''; + }; # TODO Hibernation?