mirror of
https://github.com/itme-brain/nixos.git
synced 2026-05-08 06:50:11 -04:00
big updates
This commit is contained in:
parent
52ba79c38d
commit
9a9aa63564
5 changed files with 28 additions and 23 deletions
|
|
@ -66,7 +66,12 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
programs.nix-ld.enable = true;
|
||||
programs.nix-ld = {
|
||||
enable = true;
|
||||
libraries = with pkgs; [
|
||||
icu
|
||||
];
|
||||
};
|
||||
|
||||
boot.loader = {
|
||||
systemd-boot = {
|
||||
|
|
|
|||
|
|
@ -8,9 +8,6 @@ in
|
|||
{ options.modules.user.git = { enable = mkEnableOption "user.git"; };
|
||||
config = mkIf cfg.enable {
|
||||
programs = {
|
||||
git = {
|
||||
enable = true;
|
||||
};
|
||||
gh = {
|
||||
enable = true;
|
||||
settings.git_protocol = "ssh";
|
||||
|
|
@ -19,6 +16,7 @@ in
|
|||
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
git
|
||||
git-crypt
|
||||
];
|
||||
file.".config/git" = {
|
||||
|
|
|
|||
|
|
@ -25,29 +25,29 @@ in
|
|||
colors = {
|
||||
primary = {
|
||||
background = "#000000";
|
||||
foreground = "#cdd6f4";
|
||||
foreground = "#dadada";
|
||||
};
|
||||
|
||||
normal = {
|
||||
black = "#1e2127";
|
||||
red = "#e06c75";
|
||||
green = "#98c379";
|
||||
yellow = "#d19a66";
|
||||
blue = "#61afef";
|
||||
magenta = "#c678dd";
|
||||
cyan = "#56b6c2";
|
||||
white = "#abb2bf";
|
||||
black = "#181818";
|
||||
red = "#ff6b6b";
|
||||
green = "#00b300";
|
||||
yellow = "#e8a060";
|
||||
blue = "#88ddcc";
|
||||
magenta = "#c490d0";
|
||||
cyan = "#b3f6c0";
|
||||
white = "#dadada";
|
||||
};
|
||||
|
||||
bright = {
|
||||
black = "#5c6370";
|
||||
red = "#e06c75";
|
||||
green = "#98c379";
|
||||
yellow = "#d19a66";
|
||||
blue = "#61afef";
|
||||
magenta = "#c678dd";
|
||||
cyan = "#56b6c2";
|
||||
white = "#ffffff";
|
||||
black = "#5a5a5a";
|
||||
red = "#ff6b6b";
|
||||
green = "#00b300";
|
||||
yellow = "#ffcc00";
|
||||
blue = "#88ddcc";
|
||||
magenta = "#c490d0";
|
||||
cyan = "#b3f6c0";
|
||||
white = "#ffffff";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -14,9 +14,11 @@ in
|
|||
vimdiffAlias = true;
|
||||
extraPackages = with pkgs; [
|
||||
lazygit
|
||||
cargo
|
||||
rustc
|
||||
gcc
|
||||
fzf
|
||||
rg
|
||||
ripgrep
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 22675bf8a44bcc9f166a850f4827374a538dfab3
|
||||
Subproject commit 14a67ba7d3210d915e26588da9d0326e8118d353
|
||||
Loading…
Add table
Add a link
Reference in a new issue