Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates #42

Merged
merged 6 commits into from
Jun 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion parts/hosts/jetbundle/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
armcord # Lightweight, alternative desktop client for Discord
anki # Spaced repetition flashcard program
libreoffice # Comprehensive, professional-quality productivity suite, a variant of openoffice.org
texlive.combined.scheme-medium # TeX Live environment
texlive.combined.scheme-full # TeX Live environment
zotero # Collect, organize, cite, and share your research sources
lapack # openblas with just the LAPACK C and FORTRAN ABI
ungoogled-chromium # An open source web browser from Google, with dependencies on Google web services removed
Expand Down
2 changes: 1 addition & 1 deletion parts/hosts/spinorbundle/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
armcord # Lightweight, alternative desktop client for Discord
anki # Spaced repetition flashcard program
libreoffice # Comprehensive, professional-quality productivity suite, a variant of openoffice.org
texlive.combined.scheme-medium # TeX Live environment
texlive.combined.scheme-full # TeX Live environment
zotero # Collect, organize, cite, and share your research sources
lapack # openblas with just the LAPACK C and FORTRAN ABI
ungoogled-chromium # An open source web browser from Google, with dependencies on Google web services removed
Expand Down
1,529 changes: 783 additions & 746 deletions parts/modules/home-manager/profiles/graphical-plasma/rc2nix.nix

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ in
vue-js-devtools # DevTools extension for debugging Vue.js applications.
react-devtools # React Developer Tools is a tool that allows you to inspect a React tree, including the component hierarchy, props, state, and more.
octotree # GitHub on steroids
refined-github # Simplifies the GitHub interface and adds many useful features.
]
++ (optional plasmaCheck plasma-integration)
);
Expand Down
2 changes: 1 addition & 1 deletion parts/modules/home-manager/programs/editors/emacs-doom.nix
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ in
# :tools lookup & :lang org +roam
sqlite
# :lang latex & :lang org (latex previews)
texlive.combined.scheme-medium
# texlive.combined.scheme-medium
# :lang beancount
fava # HACK Momentarily broken on nixos-unstable
graphviz
Expand Down
1 change: 1 addition & 0 deletions parts/modules/home-manager/programs/editors/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ in
set smartindent
set shiftround

set ignorecase
set smartcase
set showmatch

Expand Down
6 changes: 3 additions & 3 deletions parts/modules/home-manager/programs/shells/zsh/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -175,13 +175,13 @@ in
syntaxHighlighting.enable = _ true;
autosuggestion.enable = _ cfg.withAutocompletions;
history = {
extended = _ true;
extended = _ false;
expireDuplicatesFirst = _ true;
ignoreAllDups = _ true;
ignoreDups = _ true;
ignoreSpace = _ true;
size = _ 100000;
save = _ 100000;
size = _ 1000000;
save = _ 1000000;
};
# historySubstringSearch = {
# enable = _ true;
Expand Down
4 changes: 2 additions & 2 deletions parts/pkgs/polonium-nightly.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ buildNpmPackage {
src = fetchFromGitHub {
owner = "zeroxoneafour";
repo = "polonium";
rev = "816749c15ba735f9f37f5cf050b1c704a7dd38c0";
hash = "sha256-RiZ7a8Yb5FaPmPHLwJN/d92X9wcg7kmE08ibJI1wdw4=";
rev = "515f6990c848d935c56de5e12cec74ca4aab1baf";
hash = "sha256-ZaeyMbYWrfUNR9nx7y3SRNSHq3EPLkLXQ1AZJ9dzoGU=";
};

npmDepsHash = "sha256-kaT3Uyq+/JkmebakG9xQuR4Kjo7vk6BzI1/LffOj/eo=";
Expand Down