chore: General update

This commit is contained in:
Leni Aniva 2024-12-04 16:58:32 -08:00
parent 9482790891
commit 312a955fd6
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
5 changed files with 41 additions and 25 deletions

View File

@ -163,6 +163,7 @@ Modifications to the default key bindings to mimic spacemacs
; Remap JIS yen key to backslash
(global-set-key (kbd "M-¥") (kbd "\\"))
(global-set-key (kbd "M-|") (kbd "|"))
(global-set-key (kbd "C-M-¥") (kbd "C-\\"))
#+end_src

View File

@ -22,16 +22,16 @@
},
"nixpkgs-darwin": {
"locked": {
"lastModified": 1730891215,
"narHash": "sha256-i85DPrhDuvzgvIWCpJlbfM2UFtNYbapo20MtQXsvay4=",
"lastModified": 1733326450,
"narHash": "sha256-hBG6Ix5ZzXCJoanrPOLtQRalYv6nnDu9AZeamRfjKJ8=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c128e44a249d6180740d0a979b6480d5b795c013",
"rev": "f9ef77eb704d063bfbff7f04531a0b325cc1a18f",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-24.05-darwin",
"ref": "nixpkgs-24.11-darwin",
"repo": "nixpkgs",
"type": "github"
}

View File

@ -2,7 +2,7 @@
description = "Leni Aniva's Systems";
inputs = {
nixpkgs-darwin.url = "github:NixOS/nixpkgs/nixpkgs-24.05-darwin";
nixpkgs-darwin.url = "github:NixOS/nixpkgs/nixpkgs-24.11-darwin";
nix-darwin = {
url = "github:LnL7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs-darwin";

View File

@ -1,21 +1,4 @@
{ config, pkgs, ... }: let
tex = pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-medium
latexmk
amsmath
cancel
hyphenat
datetime2
makecell
tikzmark
tcolorbox
environ
tikzfill
pdfcol
;
};
in
{
{ config, pkgs, ... }: {
imports = [ ./homebrew.nix ./yabai-skhd.nix ];
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
@ -43,6 +26,9 @@ in
# Media
imagemagick
fontconfig
pass
python312Packages.pygments
];
};

View File

@ -2,16 +2,45 @@
pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-medium
latexmk
# Symbols
amsmath
cancel
hyphenat
xstring
mnsymbol
scalerel
# Typesetting
pdfcol
changepage
upquote
anyfontsize
# Misc
svg
datetime2
makecell
tikzmark
tcolorbox
type1cm
environ
minted
transparent
# Graphics
tikzmark
tikzfill
pdfcol
pgfplots
# Classes
llncs
beamerposter
# Fonts
gnu-freefont
raleway
lato
biblatex
;
}