From 7f424ba841aa1a4e8f806b176d39d931c1334a1f Mon Sep 17 00:00:00 2001 From: krizej Date: Sat, 2 Nov 2024 23:06:26 +0100 Subject: [PATCH] lil' cleanup --- hosts/laptop/default.nix | 8 -------- modules/stuff/other-dev-programs.nix | 4 ++-- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/hosts/laptop/default.nix b/hosts/laptop/default.nix index c683832..1dd5ed4 100644 --- a/hosts/laptop/default.nix +++ b/hosts/laptop/default.nix @@ -13,9 +13,6 @@ efi.canTouchEfiVariables = true; }; - users.users.${user}.extraGroups = [ "adbusers" ]; - programs.adb.enable = true; - home-manager.users.${user}.home = { packages = with pkgs; [ pamixer @@ -23,14 +20,9 @@ aseprite cloc viu - zed-editor android-studio android-studio-tools - - godot4-mono - dotnet-sdk - omnisharp-roslyn ]; file = { diff --git a/modules/stuff/other-dev-programs.nix b/modules/stuff/other-dev-programs.nix index dc8fb54..57a4990 100644 --- a/modules/stuff/other-dev-programs.nix +++ b/modules/stuff/other-dev-programs.nix @@ -21,6 +21,7 @@ in { programs.adb.enable = true; + # TODO: maybe move this shit to it's own module (esp. since building zed from source takes a long time) home-manager.users.${user}.programs.zed-editor = { enable = true; package = (inputs.zed.packages.${pkgs.system}.zed-editor.overrideAttrs { @@ -147,8 +148,7 @@ in { ctrl-w = "pane::CloseActiveItem"; }) (context "Editor && (showing_code_actons || showing_completions)" { - # yes, these are the defaults. for some reason "down" - # does not work unless we repeat it??? + # yes, these are the defaults. for some reason "down" does not work unless we repeat it??? up = "editor::ContextMenuPrev"; down = "editor::ContextMenuNext"; })