refactor(repo): reformat to nixfmt; relicense to 0BSD

This commit is contained in:
Artur Manuel 2025-03-06 20:45:49 +00:00
commit db2564d828
Signed by: amadaluzia
SSH key fingerprint: SHA256:Zwg7gBuZyaG48ucAZneJwltiXu0+tJb7c3lYt9AYlLg
39 changed files with 451 additions and 318 deletions

View file

@ -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";
};