-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fenix and rust-analyzer-src dependencies
- Loading branch information
Showing
16 changed files
with
153 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# darwinProfiles | ||
|
||
Profiles for Nix-darwin. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Install macOS applications with homebrew. | ||
{globals, ...}: { | ||
config, | ||
lib, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# homeProfiles | ||
|
||
Profiles for Home-manager. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Basic configurations for Home-manager. | ||
{globals, ...}: { | ||
config, | ||
lib, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# homeProfiles.lang | ||
|
||
Configure programming languages with Home-manager. Simply import `homeProfiles.lang.complete` to support all languages. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# C/C++ configurations. | ||
{globals, ...}: { | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
with builtins // lib; { | ||
home.packages = with pkgs; [ | ||
clang-tools | ||
cmake | ||
gcc | ||
gnumake | ||
ninja | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# All programming languages. | ||
{globals, ...}: { | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
with builtins // lib; { | ||
imports = | ||
map | ||
(path: (import path {inherit globals;})) | ||
[ | ||
./c.nix | ||
./latex.nix | ||
./nix.nix | ||
./python.nix | ||
./rust.nix | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# LaTeX configurations. | ||
{globals, ...}: { | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
with builtins // lib; { | ||
home.packages = with pkgs; [ | ||
tectonic | ||
texlive.combined.scheme-full | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Nix configurations. | ||
{globals, ...}: { | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
with builtins // lib; { | ||
home.packages = with pkgs; [ | ||
alejandra | ||
nil | ||
rnix-lsp | ||
deadnix | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Python configurations. | ||
{globals, ...}: { | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
with builtins // lib; let | ||
minicondaPath = "~/.miniconda"; | ||
in { | ||
home.packages = with pkgs; [ | ||
black | ||
isort | ||
poetry | ||
python3 | ||
ruff | ||
ruff-lsp | ||
yapf | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Rust configurations. | ||
{globals, ...}: { | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
with builtins // lib; { | ||
home.packages = with pkgs; [ | ||
fenix.stable.toolchain | ||
]; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.