Compare commits
No commits in common. "3e5d1422356f984fef46b827f106dd256b85dd53" and "cdfeea8d97a244960796978295a021a2fede2378" have entirely different histories.
3e5d142235
...
cdfeea8d97
3 changed files with 4 additions and 33 deletions
|
@ -5,11 +5,6 @@
|
|||
let
|
||||
# Simple helper to de-stringify invalid tokens.
|
||||
author = name: pkgs.vscode-extensions.${name};
|
||||
|
||||
# Forces a package to be marked as having linux-aarch64 support.
|
||||
forceArmLinux = pkg: pkg.overrideAttrs (prev: {
|
||||
meta.platforms = prev.meta.platforms ++ [ "aarch64-linux" ];
|
||||
});
|
||||
in
|
||||
{
|
||||
|
||||
|
@ -27,6 +22,7 @@ in
|
|||
|
||||
# appearance
|
||||
oderwat.indent-rainbow
|
||||
(author "2gua").rainbow-brackets
|
||||
brandonkirbyson.solarized-palenight
|
||||
|
||||
# behavior
|
||||
|
@ -43,12 +39,12 @@ in
|
|||
streetsidesoftware.code-spell-checker
|
||||
|
||||
# rust
|
||||
fill-labs.dependi
|
||||
serayuzgur.crates
|
||||
rust-lang.rust-analyzer
|
||||
njpwerner.autodocstring
|
||||
|
||||
# python
|
||||
(forceArmLinux ms-python.python)
|
||||
ms-python.python
|
||||
|
||||
# c/c++
|
||||
ms-vscode.cpptools
|
||||
|
@ -61,8 +57,6 @@ in
|
|||
# accessibility / talon, for when our neuro condition is wonk
|
||||
pokey.talon
|
||||
pokey.cursorless
|
||||
pokey.parse-tree
|
||||
pokey.command-server
|
||||
|
||||
];
|
||||
|
||||
|
@ -72,8 +66,6 @@ in
|
|||
# Theming.
|
||||
"workbench.colorTheme" = lib.mkForce "Solarized-Palenight";
|
||||
|
||||
# Default to formatting on save.
|
||||
"editor.formatOnSave" = true;
|
||||
|
||||
};
|
||||
|
||||
|
|
|
@ -31,15 +31,12 @@
|
|||
services.displayManager.sddm.wayland.compositor = "kwin";
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
# Set up Apple Silicon features.
|
||||
# Set up MacOS features.
|
||||
hardware.asahi = {
|
||||
peripheralFirmwareDirectory = ../../apple-silicon-support/firmware;
|
||||
useExperimentalGPUDriver = true;
|
||||
};
|
||||
|
||||
# Run an ssh-agent locally.
|
||||
programs.ssh.startAgent = true;
|
||||
|
||||
# Make Niri work on this machine. :)
|
||||
home-manager.users.deprekated = {
|
||||
programs.niri.settings = {
|
||||
|
|
|
@ -19,11 +19,6 @@ in
|
|||
hash = "sha256-gGTpeOQeIQj2ObyC6504+lzLFUS35RNw5z2/isPRpyM=";
|
||||
};
|
||||
|
||||
|
||||
#
|
||||
# Talon-related extensions.
|
||||
#
|
||||
|
||||
pokey.talon = quickMarketplaceExtension {
|
||||
name = "talon";
|
||||
publisher = "pokey";
|
||||
|
@ -38,17 +33,4 @@ in
|
|||
hash = "sha256-QIfAu76QhIII8Xnt5lCCVsZAaa57OHszC4ZQuq67MZs=";
|
||||
};
|
||||
|
||||
pokey.parse-tree = quickMarketplaceExtension {
|
||||
name = "parse-tree";
|
||||
publisher = "pokey";
|
||||
version = "0.32.0";
|
||||
hash = "sha256-SfixHdqXsHYxWUVku6N8+H3xaA5NKXsgGYl3lB7izNA=";
|
||||
};
|
||||
|
||||
pokey.command-server = quickMarketplaceExtension {
|
||||
name = "command-server";
|
||||
publisher = "pokey";
|
||||
version = "0.10.1";
|
||||
hash = "sha256-r70WXsr5+aHv+W5aT6m7NcaEtte1dnWhRyxWWhu0uLM=";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue