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 ; Remap JIS yen key to backslash
(global-set-key (kbd "M-¥") (kbd "\\")) (global-set-key (kbd "M-¥") (kbd "\\"))
(global-set-key (kbd "M-|") (kbd "|"))
(global-set-key (kbd "C-M-¥") (kbd "C-\\")) (global-set-key (kbd "C-M-¥") (kbd "C-\\"))
#+end_src #+end_src

View File

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

View File

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

View File

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

View File

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