switch to nixfmt-rfc-style, run nix fmt
This commit is contained in:
parent
601817ece5
commit
414550da70
16 changed files with 300 additions and 190 deletions
85
flake.nix
85
flake.nix
|
@ -3,7 +3,9 @@
|
||||||
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
|
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
|
||||||
devenv = {
|
devenv = {
|
||||||
url = "github:cachix/devenv";
|
url = "github:cachix/devenv";
|
||||||
inputs = {nixpkgs.follows = "nixpkgs";};
|
inputs = {
|
||||||
|
nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -12,39 +14,52 @@
|
||||||
extra-substituters = "https://devenv.cachix.org";
|
extra-substituters = "https://devenv.cachix.org";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs =
|
||||||
nixpkgs,
|
{
|
||||||
devenv,
|
nixpkgs,
|
||||||
systems,
|
devenv,
|
||||||
...
|
systems,
|
||||||
} @ inputs: let
|
...
|
||||||
forEachSystem = nixpkgs.lib.genAttrs (import systems);
|
}@inputs:
|
||||||
in {
|
let
|
||||||
formatter = forEachSystem (system: nixpkgs.legacyPackages.${system}.alejandra);
|
forEachSystem = nixpkgs.lib.genAttrs (import systems);
|
||||||
devShells =
|
in
|
||||||
forEachSystem
|
{
|
||||||
(system: let
|
formatter = forEachSystem (system: nixpkgs.legacyPackages.${system}.nixfmt-rfc-style);
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
devShells = forEachSystem (
|
||||||
in {
|
system:
|
||||||
default = devenv.lib.mkShell {
|
let
|
||||||
inherit inputs pkgs;
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
modules = [
|
in
|
||||||
{
|
{
|
||||||
# https://devenv.sh/reference/options/
|
default = devenv.lib.mkShell {
|
||||||
packages = [pkgs.hello pkgs.delta pkgs.difftastic pkgs.alejandra pkgs.nodePackages.bash-language-server pkgs.shellcheck pkgs.shfmt];
|
inherit inputs pkgs;
|
||||||
|
modules = [
|
||||||
|
{
|
||||||
|
# https://devenv.sh/reference/options/
|
||||||
|
packages = [
|
||||||
|
pkgs.hello
|
||||||
|
pkgs.delta
|
||||||
|
pkgs.difftastic
|
||||||
|
pkgs.alejandra
|
||||||
|
pkgs.nodePackages.bash-language-server
|
||||||
|
pkgs.shellcheck
|
||||||
|
pkgs.shfmt
|
||||||
|
];
|
||||||
|
|
||||||
pre-commit.hooks = {
|
pre-commit.hooks = {
|
||||||
alejandra.enable = true;
|
nixfmt-rfc-style.enable = true;
|
||||||
black.enable = true;
|
black.enable = true;
|
||||||
deadnix.enable = true;
|
deadnix.enable = true;
|
||||||
stylua.enable = true;
|
stylua.enable = true;
|
||||||
shellcheck.enable = true;
|
shellcheck.enable = true;
|
||||||
shfmt.enable = true;
|
shfmt.enable = true;
|
||||||
taplo.enable = true;
|
taplo.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
});
|
}
|
||||||
};
|
);
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,9 @@
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
# Specify the source of Home Manager and Nixpkgs.
|
# Specify the source of Home Manager and Nixpkgs.
|
||||||
nixpkgs = {url = "github:nixos/nixpkgs";};
|
nixpkgs = {
|
||||||
|
url = "github:nixos/nixpkgs";
|
||||||
|
};
|
||||||
flake-utils.url = "github:numtide/flake-utils"; # not directly used, but common source for the several flakes that do use it
|
flake-utils.url = "github:numtide/flake-utils"; # not directly used, but common source for the several flakes that do use it
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
url = "github:nix-community/home-manager";
|
||||||
|
@ -59,26 +61,33 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs =
|
||||||
self,
|
{
|
||||||
nixpkgs,
|
self,
|
||||||
home-manager,
|
nixpkgs,
|
||||||
nix-index-database,
|
home-manager,
|
||||||
nixvim,
|
nix-index-database,
|
||||||
fenix,
|
nixvim,
|
||||||
# wezterm,
|
fenix,
|
||||||
nixneovimplugins,
|
# wezterm,
|
||||||
ghostty,
|
nixneovimplugins,
|
||||||
...
|
ghostty,
|
||||||
}: let
|
...
|
||||||
supportedSystems = ["aarch64-darwin" "x86_64-linux"];
|
}:
|
||||||
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
let
|
||||||
|
supportedSystems = [
|
||||||
|
"aarch64-darwin"
|
||||||
|
"x86_64-linux"
|
||||||
|
];
|
||||||
|
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
||||||
|
|
||||||
pkgs = forAllSystems (
|
pkgs = forAllSystems (
|
||||||
system:
|
system:
|
||||||
import nixpkgs {
|
import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
config = {allowUnfree = true;};
|
config = {
|
||||||
|
allowUnfree = true;
|
||||||
|
};
|
||||||
overlays = [
|
overlays = [
|
||||||
ghostty.overlays.default
|
ghostty.overlays.default
|
||||||
# (_final: prev: {
|
# (_final: prev: {
|
||||||
|
@ -95,10 +104,9 @@
|
||||||
fenix.overlays.default
|
fenix.overlays.default
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
homeManagerConfigs = forAllSystems (
|
homeManagerConfigs = forAllSystems (system: {
|
||||||
system: {
|
|
||||||
pkgs = pkgs.${system};
|
pkgs = pkgs.${system};
|
||||||
modules = [
|
modules = [
|
||||||
{
|
{
|
||||||
|
@ -109,14 +117,18 @@
|
||||||
nix-index-database.hmModules.nix-index
|
nix-index-database.hmModules.nix-index
|
||||||
./home.nix
|
./home.nix
|
||||||
];
|
];
|
||||||
}
|
});
|
||||||
);
|
in
|
||||||
in {
|
{
|
||||||
formatter = forAllSystems (system: pkgs.${system}.alejandra);
|
formatter = forAllSystems (system: pkgs.${system}.nixfmt-rfc-style);
|
||||||
homeConfigurations.aarch64-darwin-acicchetti = home-manager.lib.homeManagerConfiguration homeManagerConfigs."aarch64-darwin";
|
homeConfigurations.aarch64-darwin-acicchetti =
|
||||||
homeConfigurations.x86_64-linux-acicchetti = home-manager.lib.homeManagerConfiguration homeManagerConfigs."x86_64-linux";
|
home-manager.lib.homeManagerConfiguration
|
||||||
|
homeManagerConfigs."aarch64-darwin";
|
||||||
|
homeConfigurations.x86_64-linux-acicchetti =
|
||||||
|
home-manager.lib.homeManagerConfiguration
|
||||||
|
homeManagerConfigs."x86_64-linux";
|
||||||
|
|
||||||
defaultPackage.aarch64-darwin = self.homeConfigurations.aarch64-darwin-acicchetti.activationPackage;
|
defaultPackage.aarch64-darwin = self.homeConfigurations.aarch64-darwin-acicchetti.activationPackage;
|
||||||
defaultPackage.x86_64-linux = self.homeConfigurations.x86_64-linux-acicchetti.activationPackage;
|
defaultPackage.x86_64-linux = self.homeConfigurations.x86_64-linux-acicchetti.activationPackage;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
{pkgs, ...}: let
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
home = {
|
home = {
|
||||||
username = "acicchetti";
|
username = "acicchetti";
|
||||||
|
|
||||||
homeDirectory =
|
homeDirectory = if isDarwin then "/Users/acicchetti" else "/home/acicchetti";
|
||||||
if isDarwin
|
|
||||||
then "/Users/acicchetti"
|
|
||||||
else "/home/acicchetti";
|
|
||||||
|
|
||||||
stateVersion = "24.11";
|
stateVersion = "24.11";
|
||||||
|
|
||||||
|
@ -100,7 +99,18 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
misc = {
|
misc = {
|
||||||
disable = ["node" "nix" "home_manager" "gem" "ruby_gems" "cargo" "vim" "pipx" "pip3" "containers"];
|
disable = [
|
||||||
|
"node"
|
||||||
|
"nix"
|
||||||
|
"home_manager"
|
||||||
|
"gem"
|
||||||
|
"ruby_gems"
|
||||||
|
"cargo"
|
||||||
|
"vim"
|
||||||
|
"pipx"
|
||||||
|
"pip3"
|
||||||
|
"containers"
|
||||||
|
];
|
||||||
run_in_tmux = true;
|
run_in_tmux = true;
|
||||||
display_time = true;
|
display_time = true;
|
||||||
skip_notify = true;
|
skip_notify = true;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{...}: {
|
{ ... }:
|
||||||
|
{
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
PAGE = "page -q 90000 -z 90000";
|
PAGE = "page -q 90000 -z 90000";
|
||||||
|
|
|
@ -2,19 +2,21 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}: let
|
}:
|
||||||
|
let
|
||||||
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
||||||
repo_root = "../../..";
|
repo_root = "../../..";
|
||||||
nv_fonts_basic = ["TX-02-BerkeleyAC" "Maple Mono NF" "Departure Mono" "Fantasque Sans Mono"];
|
nv_fonts_basic = [
|
||||||
|
"TX-02-BerkeleyAC"
|
||||||
|
"Maple Mono NF"
|
||||||
|
"Departure Mono"
|
||||||
|
"Fantasque Sans Mono"
|
||||||
|
];
|
||||||
nv_fonts_normal =
|
nv_fonts_normal =
|
||||||
nv_fonts_basic
|
nv_fonts_basic ++ (if isLinux then [ "Noto Color Emoji" ] else [ "Apple Color Emoji" ]);
|
||||||
++ (
|
nv_fonts_italic = [ "Dank Mono" ] ++ nv_fonts_basic;
|
||||||
if isLinux
|
in
|
||||||
then ["Noto Color Emoji"]
|
{
|
||||||
else ["Apple Color Emoji"]
|
|
||||||
);
|
|
||||||
nv_fonts_italic = ["Dank Mono"] ++ nv_fonts_basic;
|
|
||||||
in {
|
|
||||||
home.file = {
|
home.file = {
|
||||||
"/.zsh.d/" = {
|
"/.zsh.d/" = {
|
||||||
source = ./${repo_root}/zsh/funcs;
|
source = ./${repo_root}/zsh/funcs;
|
||||||
|
@ -23,7 +25,7 @@ in {
|
||||||
text = "";
|
text = "";
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
".cargo/config.toml".source = (pkgs.formats.toml {}).generate "cargo-config" {
|
".cargo/config.toml".source = (pkgs.formats.toml { }).generate "cargo-config" {
|
||||||
net = {
|
net = {
|
||||||
git-fetch-with-cli = true;
|
git-fetch-with-cli = true;
|
||||||
};
|
};
|
||||||
|
@ -34,7 +36,10 @@ in {
|
||||||
# Could avoid setting this at all with another `isLinux` but whatever, doesn't truly matter
|
# Could avoid setting this at all with another `isLinux` but whatever, doesn't truly matter
|
||||||
"target.x86_64-unknown-linux-gnu" = {
|
"target.x86_64-unknown-linux-gnu" = {
|
||||||
linker = "clang";
|
linker = "clang";
|
||||||
rustflags = ["-C" "link-arg=-fuse-ld=${config.home.profileDirectory}/bin/mold"];
|
rustflags = [
|
||||||
|
"-C"
|
||||||
|
"link-arg=-fuse-ld=${config.home.profileDirectory}/bin/mold"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
"registries.crates-io" = {
|
"registries.crates-io" = {
|
||||||
protocol = "sparse";
|
protocol = "sparse";
|
||||||
|
@ -75,7 +80,7 @@ in {
|
||||||
"ghostty/config".source = ./${repo_root}/ghostty/config;
|
"ghostty/config".source = ./${repo_root}/ghostty/config;
|
||||||
"kitty/kitty.conf".source = ./${repo_root}/kitty/kitty.conf;
|
"kitty/kitty.conf".source = ./${repo_root}/kitty/kitty.conf;
|
||||||
"lsd/config.yaml".source = ./${repo_root}/lsd/config.yaml;
|
"lsd/config.yaml".source = ./${repo_root}/lsd/config.yaml;
|
||||||
"neovide/config.toml".source = (pkgs.formats.toml {}).generate "neovide-config" {
|
"neovide/config.toml".source = (pkgs.formats.toml { }).generate "neovide-config" {
|
||||||
font = {
|
font = {
|
||||||
normal = nv_fonts_normal;
|
normal = nv_fonts_normal;
|
||||||
italic = nv_fonts_italic;
|
italic = nv_fonts_italic;
|
||||||
|
|
|
@ -1,16 +1,35 @@
|
||||||
{pkgs, ...}: let
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
||||||
systemSpecificPackages = with pkgs;
|
systemSpecificPackages =
|
||||||
if isLinux
|
with pkgs;
|
||||||
|
if
|
||||||
|
isLinux
|
||||||
# ncdu (well, all zig packages) don't work on macOS nix right now
|
# ncdu (well, all zig packages) don't work on macOS nix right now
|
||||||
then [zsh racket mold ncdu ghostty]
|
then
|
||||||
else [keka colima neovide aerospace];
|
[
|
||||||
cy = {
|
zsh
|
||||||
pkgs,
|
racket
|
||||||
fetchFromGitHub,
|
mold
|
||||||
}: let
|
ncdu
|
||||||
ver = "1.3.1";
|
ghostty
|
||||||
in
|
xorg.libX11
|
||||||
|
]
|
||||||
|
else
|
||||||
|
[
|
||||||
|
keka
|
||||||
|
colima
|
||||||
|
neovide
|
||||||
|
aerospace
|
||||||
|
];
|
||||||
|
cy =
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
fetchFromGitHub,
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
ver = "1.3.1";
|
||||||
|
in
|
||||||
pkgs.buildGoModule {
|
pkgs.buildGoModule {
|
||||||
pname = "cy";
|
pname = "cy";
|
||||||
version = "${ver}";
|
version = "${ver}";
|
||||||
|
@ -37,7 +56,8 @@
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./git.nix
|
./git.nix
|
||||||
./mise.nix
|
./mise.nix
|
||||||
|
@ -48,7 +68,8 @@ in {
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
# ./cy.nix
|
# ./cy.nix
|
||||||
];
|
];
|
||||||
home.packages = with pkgs;
|
home.packages =
|
||||||
|
with pkgs;
|
||||||
[
|
[
|
||||||
_1password-cli
|
_1password-cli
|
||||||
nerd-fonts._0xproto
|
nerd-fonts._0xproto
|
||||||
|
@ -57,7 +78,6 @@ in {
|
||||||
cargo-workspaces
|
cargo-workspaces
|
||||||
clipboard-jh
|
clipboard-jh
|
||||||
curl
|
curl
|
||||||
(callPackage cy {})
|
|
||||||
departure-mono
|
departure-mono
|
||||||
docker-client
|
docker-client
|
||||||
dogedns
|
dogedns
|
||||||
|
@ -66,7 +86,13 @@ in {
|
||||||
emacs
|
emacs
|
||||||
fantasque-sans-mono
|
fantasque-sans-mono
|
||||||
fd
|
fd
|
||||||
(fenix.latest.withComponents ["cargo" "clippy" "rustfmt" "rust-src" "rustc"])
|
(fenix.latest.withComponents [
|
||||||
|
"cargo"
|
||||||
|
"clippy"
|
||||||
|
"rustfmt"
|
||||||
|
"rust-src"
|
||||||
|
"rustc"
|
||||||
|
])
|
||||||
ffmpeg_6
|
ffmpeg_6
|
||||||
gawkInteractive
|
gawkInteractive
|
||||||
gnugrep
|
gnugrep
|
||||||
|
@ -104,5 +130,13 @@ in {
|
||||||
zenith
|
zenith
|
||||||
zstd
|
zstd
|
||||||
]
|
]
|
||||||
++ systemSpecificPackages;
|
++ systemSpecificPackages
|
||||||
|
++ (
|
||||||
|
if isLinux then
|
||||||
|
[ ]
|
||||||
|
else
|
||||||
|
[
|
||||||
|
(callPackage cy { })
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{...}: {
|
{ ... }:
|
||||||
|
{
|
||||||
home.file = {
|
home.file = {
|
||||||
".doom.d/init.el".source = ../../../../emacs/emacs.doom/init.el;
|
".doom.d/init.el".source = ../../../../emacs/emacs.doom/init.el;
|
||||||
".doom.d/config.el".source = ../../../../emacs/emacs.doom/config.el;
|
".doom.d/config.el".source = ../../../../emacs/emacs.doom/config.el;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# Don't use difftastic on git-diff by default
|
# Don't use difftastic on git-diff by default
|
||||||
|
@ -104,7 +105,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
includes = [
|
includes = [
|
||||||
{path = "~/.gitconfig_local";}
|
{ path = "~/.gitconfig_local"; }
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{...}: {
|
{ ... }:
|
||||||
|
{
|
||||||
programs.mise = {
|
programs.mise = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
|
@ -41,10 +42,16 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
lualine_b = ["filename" "branch"];
|
lualine_b = [
|
||||||
lualine_c = ["%="];
|
"filename"
|
||||||
lualine_x = [];
|
"branch"
|
||||||
lualine_y = ["filetype" "progress"];
|
];
|
||||||
|
lualine_c = [ "%=" ];
|
||||||
|
lualine_x = [ ];
|
||||||
|
lualine_y = [
|
||||||
|
"filetype"
|
||||||
|
"progress"
|
||||||
|
];
|
||||||
lualine_z = [
|
lualine_z = [
|
||||||
{
|
{
|
||||||
__unkeyed-1 = "location";
|
__unkeyed-1 = "location";
|
||||||
|
@ -65,23 +72,27 @@
|
||||||
};
|
};
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
preConfig = ''
|
preConfig = '''';
|
||||||
'';
|
|
||||||
servers = {
|
servers = {
|
||||||
bashls.enable = true;
|
bashls.enable = true;
|
||||||
gopls.enable = true;
|
gopls.enable = true;
|
||||||
jsonls.enable = true;
|
jsonls.enable = true;
|
||||||
pyright.enable = true; # In preference to attempting to use pylyzer
|
pyright.enable = true; # In preference to attempting to use pylyzer
|
||||||
nil_ls.enable = true;
|
nil_ls.enable = true;
|
||||||
rust_analyzer = let
|
rust_analyzer =
|
||||||
fenix = fenix.latest.withComponents ["cargo" "rustc"];
|
let
|
||||||
in {
|
fenix = fenix.latest.withComponents [
|
||||||
enable = true;
|
"cargo"
|
||||||
installCargo = false;
|
"rustc"
|
||||||
installRustc = false;
|
];
|
||||||
cargoPackage = fenix.cargo;
|
in
|
||||||
rustcPackage = fenix.rustc;
|
{
|
||||||
};
|
enable = true;
|
||||||
|
installCargo = false;
|
||||||
|
installRustc = false;
|
||||||
|
cargoPackage = fenix.cargo;
|
||||||
|
rustcPackage = fenix.rustc;
|
||||||
|
};
|
||||||
taplo.enable = true;
|
taplo.enable = true;
|
||||||
terraformls.enable = true;
|
terraformls.enable = true;
|
||||||
yamlls.enable = true;
|
yamlls.enable = true;
|
||||||
|
@ -125,12 +136,12 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
clues = [
|
clues = [
|
||||||
{__raw = "require('mini.clue').gen_clues.builtin_completion()";}
|
{ __raw = "require('mini.clue').gen_clues.builtin_completion()"; }
|
||||||
{__raw = "require('mini.clue').gen_clues.g()";}
|
{ __raw = "require('mini.clue').gen_clues.g()"; }
|
||||||
{__raw = "require('mini.clue').gen_clues.marks()";}
|
{ __raw = "require('mini.clue').gen_clues.marks()"; }
|
||||||
{__raw = "require('mini.clue').gen_clues.registers()";}
|
{ __raw = "require('mini.clue').gen_clues.registers()"; }
|
||||||
{__raw = "require('mini.clue').gen_clues.windows()";}
|
{ __raw = "require('mini.clue').gen_clues.windows()"; }
|
||||||
{__raw = "require('mini.clue').gen_clues.z()";}
|
{ __raw = "require('mini.clue').gen_clues.z()"; }
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -175,14 +186,17 @@
|
||||||
project-nvim = {
|
project-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableTelescope = true;
|
enableTelescope = true;
|
||||||
settings.detection_methods = ["lsp" "pattern"];
|
settings.detection_methods = [
|
||||||
|
"lsp"
|
||||||
|
"pattern"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
telescope = {
|
telescope = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enabledExtensions = [
|
enabledExtensions = [
|
||||||
"zf-native" #TODO
|
"zf-native" # TODO
|
||||||
"projects" #TODO
|
"projects" # TODO
|
||||||
"egrepify" #TODO
|
"egrepify" # TODO
|
||||||
];
|
];
|
||||||
# extraLua = {
|
# extraLua = {
|
||||||
# post = builtins.readFile ./neovim/telescope.lua;
|
# post = builtins.readFile ./neovim/telescope.lua;
|
||||||
|
@ -273,19 +287,17 @@
|
||||||
web-devicons.enable = true;
|
web-devicons.enable = true;
|
||||||
};
|
};
|
||||||
extraPlugins =
|
extraPlugins =
|
||||||
(
|
(with pkgs.vimPlugins; [
|
||||||
with pkgs.vimPlugins; [
|
rainbow-delimiters-nvim
|
||||||
rainbow-delimiters-nvim
|
telescope-symbols-nvim
|
||||||
telescope-symbols-nvim
|
overseer-nvim
|
||||||
overseer-nvim
|
nvim-web-devicons
|
||||||
nvim-web-devicons
|
telescope-zf-native-nvim
|
||||||
telescope-zf-native-nvim
|
vim-ReplaceWithRegister
|
||||||
vim-ReplaceWithRegister
|
vim-dispatch-neovim
|
||||||
vim-dispatch-neovim
|
vim-expand-region
|
||||||
vim-expand-region
|
nvim-ufo
|
||||||
nvim-ufo
|
])
|
||||||
]
|
|
||||||
)
|
|
||||||
++ (with pkgs.awesomeNeovimPlugins; [
|
++ (with pkgs.awesomeNeovimPlugins; [
|
||||||
linrongbin16-gitlinker-nvim
|
linrongbin16-gitlinker-nvim
|
||||||
officer-nvim
|
officer-nvim
|
||||||
|
@ -321,12 +333,18 @@
|
||||||
{
|
{
|
||||||
key = "<c-k>";
|
key = "<c-k>";
|
||||||
action = "<c-u>";
|
action = "<c-u>";
|
||||||
mode = ["n" "v"];
|
mode = [
|
||||||
|
"n"
|
||||||
|
"v"
|
||||||
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
key = "<c-j>";
|
key = "<c-j>";
|
||||||
action = "<c-d>";
|
action = "<c-d>";
|
||||||
mode = ["n" "v"];
|
mode = [
|
||||||
|
"n"
|
||||||
|
"v"
|
||||||
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
key = "<leader>n";
|
key = "<leader>n";
|
||||||
|
|
|
@ -2,22 +2,24 @@
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}:
|
||||||
|
let
|
||||||
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
inherit (pkgs.stdenv.hostPlatform) isDarwin;
|
||||||
_1pass_socket =
|
_1pass_socket =
|
||||||
if isDarwin
|
if isDarwin then
|
||||||
then "${config.home.homeDirectory}/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
|
"${config.home.homeDirectory}/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
|
||||||
else "${config.home.homeDirectory}/.1password/agent.sock";
|
else
|
||||||
in {
|
"${config.home.homeDirectory}/.1password/agent.sock";
|
||||||
|
in
|
||||||
|
{
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
includes =
|
includes = if isDarwin then [ "${config.home.homeDirectory}/.colima/ssh_config" ] else [ ];
|
||||||
if isDarwin
|
|
||||||
then ["${config.home.homeDirectory}/.colima/ssh_config"]
|
|
||||||
else [];
|
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
"10.*" = {
|
"10.*" = {
|
||||||
setEnv = {"TERM" = "xterm-256color";};
|
setEnv = {
|
||||||
|
"TERM" = "xterm-256color";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
"acicchetti.dev" = {
|
"acicchetti.dev" = {
|
||||||
extraOptions = {
|
extraOptions = {
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{...}: {
|
{ ... }:
|
||||||
|
{
|
||||||
programs.starship = {
|
programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
|
@ -58,12 +59,12 @@
|
||||||
)
|
)
|
||||||
'
|
'
|
||||||
'';
|
'';
|
||||||
detect_folders = [".jj"];
|
detect_folders = [ ".jj" ];
|
||||||
symbol = "jj";
|
symbol = "jj";
|
||||||
};
|
};
|
||||||
custom.jjstatus = {
|
custom.jjstatus = {
|
||||||
command = ''jj log -r@ -l1 --no-graph -T "" --stat | tail -n1 | sd "(\d+) files? changed, (\d+) insertions?\(\+\), (\d+) deletions?\(-\)" " $${1}m $${2}+ $${3}-" | sd " 0." ""'';
|
command = ''jj log -r@ -l1 --no-graph -T "" --stat | tail -n1 | sd "(\d+) files? changed, (\d+) insertions?\(\+\), (\d+) deletions?\(-\)" " $${1}m $${2}+ $${3}-" | sd " 0." ""'';
|
||||||
detect_folders = [".jj"];
|
detect_folders = [ ".jj" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
dart = {
|
dart = {
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{...}: {
|
{ ... }:
|
||||||
|
{
|
||||||
programs.zellij = {
|
programs.zellij = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableZshIntegration = false; # automatically sets up a session - I don't want this, I want manual control of my sessions
|
enableZshIntegration = false; # automatically sets up a session - I don't want this, I want manual control of my sessions
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{pkgs, ...}: let
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
|
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
initExtraFirst = ''
|
initExtraFirst = ''
|
||||||
|
@ -15,18 +17,20 @@ in {
|
||||||
initExtra = builtins.readFile ../../../../zsh/zshrc;
|
initExtra = builtins.readFile ../../../../zsh/zshrc;
|
||||||
antidote = {
|
antidote = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = let
|
plugins =
|
||||||
ohmyzsh-lib = "ohmyzsh/oh-my-zsh path:lib";
|
let
|
||||||
ohmyzsh-plugin = "ohmyzsh/oh-my-zsh path:plugins";
|
ohmyzsh-lib = "ohmyzsh/oh-my-zsh path:lib";
|
||||||
extraPlugins =
|
ohmyzsh-plugin = "ohmyzsh/oh-my-zsh path:plugins";
|
||||||
if isLinux
|
extraPlugins =
|
||||||
then []
|
if isLinux then
|
||||||
else if isDarwin
|
[ ]
|
||||||
then [
|
else if isDarwin then
|
||||||
"${ohmyzsh-plugin}/brew"
|
[
|
||||||
]
|
"${ohmyzsh-plugin}/brew"
|
||||||
else [];
|
]
|
||||||
in
|
else
|
||||||
|
[ ];
|
||||||
|
in
|
||||||
extraPlugins
|
extraPlugins
|
||||||
++ [
|
++ [
|
||||||
"zdharma-continuum/fast-syntax-highlighting"
|
"zdharma-continuum/fast-syntax-highlighting"
|
||||||
|
@ -82,19 +86,21 @@ in {
|
||||||
AGE = "rage";
|
AGE = "rage";
|
||||||
AGE_KEYPATH = "op://Jellyfish/age-key";
|
AGE_KEYPATH = "op://Jellyfish/age-key";
|
||||||
};
|
};
|
||||||
shellAliases = let
|
shellAliases =
|
||||||
platformSpecificAliases =
|
let
|
||||||
if isLinux
|
platformSpecificAliases =
|
||||||
then {
|
if isLinux then
|
||||||
cp = "cp --reflink=auto";
|
{
|
||||||
}
|
cp = "cp --reflink=auto";
|
||||||
else {
|
}
|
||||||
# exa = "eza -l --git";
|
else
|
||||||
# ls = "exa";
|
{
|
||||||
nv = "neovide --fork";
|
# exa = "eza -l --git";
|
||||||
};
|
# ls = "exa";
|
||||||
in
|
nv = "neovide --fork";
|
||||||
{zj = "zellij -l welcome";} // platformSpecificAliases;
|
};
|
||||||
|
in
|
||||||
|
{ zj = "zellij -l welcome"; } // platformSpecificAliases;
|
||||||
};
|
};
|
||||||
programs.carapace = {
|
programs.carapace = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{...}: {
|
{ ... }:
|
||||||
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./git-sync.nix
|
./git-sync.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{config, ...}: {
|
{ config, ... }:
|
||||||
|
{
|
||||||
services.git-sync = {
|
services.git-sync = {
|
||||||
enable = true;
|
enable = true;
|
||||||
repositories = {
|
repositories = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue