lil' cleanup
This commit is contained in:
parent
63b9f83b93
commit
7f424ba841
2 changed files with 2 additions and 10 deletions
|
@ -13,9 +13,6 @@
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
users.users.${user}.extraGroups = [ "adbusers" ];
|
|
||||||
programs.adb.enable = true;
|
|
||||||
|
|
||||||
home-manager.users.${user}.home = {
|
home-manager.users.${user}.home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
pamixer
|
pamixer
|
||||||
|
@ -23,14 +20,9 @@
|
||||||
aseprite
|
aseprite
|
||||||
cloc
|
cloc
|
||||||
viu
|
viu
|
||||||
zed-editor
|
|
||||||
|
|
||||||
android-studio
|
android-studio
|
||||||
android-studio-tools
|
android-studio-tools
|
||||||
|
|
||||||
godot4-mono
|
|
||||||
dotnet-sdk
|
|
||||||
omnisharp-roslyn
|
|
||||||
];
|
];
|
||||||
|
|
||||||
file = {
|
file = {
|
||||||
|
|
|
@ -21,6 +21,7 @@ in {
|
||||||
|
|
||||||
programs.adb.enable = true;
|
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 = {
|
home-manager.users.${user}.programs.zed-editor = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = (inputs.zed.packages.${pkgs.system}.zed-editor.overrideAttrs {
|
package = (inputs.zed.packages.${pkgs.system}.zed-editor.overrideAttrs {
|
||||||
|
@ -147,8 +148,7 @@ in {
|
||||||
ctrl-w = "pane::CloseActiveItem";
|
ctrl-w = "pane::CloseActiveItem";
|
||||||
})
|
})
|
||||||
(context "Editor && (showing_code_actons || showing_completions)" {
|
(context "Editor && (showing_code_actons || showing_completions)" {
|
||||||
# yes, these are the defaults. for some reason "down"
|
# yes, these are the defaults. for some reason "down" does not work unless we repeat it???
|
||||||
# does not work unless we repeat it???
|
|
||||||
up = "editor::ContextMenuPrev";
|
up = "editor::ContextMenuPrev";
|
||||||
down = "editor::ContextMenuNext";
|
down = "editor::ContextMenuNext";
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue