refactor(repo): reformat to nixfmt; relicense to 0BSD
This commit is contained in:
parent
035fb24038
commit
db2564d828
39 changed files with 451 additions and 318 deletions
|
@ -1,9 +1,9 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
alqueva.users.unix = {
|
||||
shell = pkgs.zsh;
|
||||
packages = builtins.attrValues {
|
||||
inherit
|
||||
(pkgs)
|
||||
inherit (pkgs)
|
||||
wget2
|
||||
fastfetch
|
||||
btop-rocm
|
||||
|
@ -29,21 +29,18 @@
|
|||
man-pages-posix
|
||||
xwayland-satellite
|
||||
;
|
||||
inherit
|
||||
(pkgs.nodePackages_latest)
|
||||
inherit (pkgs.nodePackages_latest)
|
||||
nodejs
|
||||
pnpm
|
||||
;
|
||||
inherit
|
||||
(pkgs.llvmPackages_19)
|
||||
inherit (pkgs.llvmPackages_19)
|
||||
libcxxClang
|
||||
clangUseLLVM
|
||||
clang-tools
|
||||
clang-manpages
|
||||
openmp
|
||||
;
|
||||
inherit
|
||||
(pkgs.emacsPackages)
|
||||
inherit (pkgs.emacsPackages)
|
||||
tree-sitter
|
||||
tsc
|
||||
tree-sitter-langs
|
||||
|
@ -91,7 +88,7 @@
|
|||
enableCompletion = true;
|
||||
autosuggestions = {
|
||||
enable = true;
|
||||
strategy = ["completion"];
|
||||
strategy = [ "completion" ];
|
||||
};
|
||||
|
||||
zsh-autoenv = {
|
||||
|
@ -100,7 +97,15 @@
|
|||
|
||||
syntaxHighlighting = {
|
||||
enable = true;
|
||||
highlighters = ["main" "brackets" "pattern" "cursor" "regexp" "root" "line"];
|
||||
highlighters = [
|
||||
"main"
|
||||
"brackets"
|
||||
"pattern"
|
||||
"cursor"
|
||||
"regexp"
|
||||
"root"
|
||||
"line"
|
||||
];
|
||||
};
|
||||
|
||||
shellAliases = {
|
||||
|
@ -111,7 +116,12 @@
|
|||
|
||||
ohMyZsh = {
|
||||
enable = true;
|
||||
plugins = ["git" "direnv" "fzf" "ssh-agent"];
|
||||
plugins = [
|
||||
"git"
|
||||
"direnv"
|
||||
"fzf"
|
||||
"ssh-agent"
|
||||
];
|
||||
preLoaded = "zstyle :omz:plugins:ssh-agent agent-forwarding yes";
|
||||
theme = "half-life";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue