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 = {
|
boot.loader = {
|
||||||
systemd-boot = {
|
systemd-boot = {
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,6 @@ in
|
||||||
{ options.modules.user.git = { enable = mkEnableOption "user.git"; };
|
{ options.modules.user.git = { enable = mkEnableOption "user.git"; };
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
programs = {
|
programs = {
|
||||||
git = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
gh = {
|
gh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.git_protocol = "ssh";
|
settings.git_protocol = "ssh";
|
||||||
|
|
@ -19,6 +16,7 @@ in
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
git
|
||||||
git-crypt
|
git-crypt
|
||||||
];
|
];
|
||||||
file.".config/git" = {
|
file.".config/git" = {
|
||||||
|
|
|
||||||
|
|
@ -25,29 +25,29 @@ in
|
||||||
colors = {
|
colors = {
|
||||||
primary = {
|
primary = {
|
||||||
background = "#000000";
|
background = "#000000";
|
||||||
foreground = "#cdd6f4";
|
foreground = "#dadada";
|
||||||
};
|
};
|
||||||
|
|
||||||
normal = {
|
normal = {
|
||||||
black = "#1e2127";
|
black = "#181818";
|
||||||
red = "#e06c75";
|
red = "#ff6b6b";
|
||||||
green = "#98c379";
|
green = "#00b300";
|
||||||
yellow = "#d19a66";
|
yellow = "#e8a060";
|
||||||
blue = "#61afef";
|
blue = "#88ddcc";
|
||||||
magenta = "#c678dd";
|
magenta = "#c490d0";
|
||||||
cyan = "#56b6c2";
|
cyan = "#b3f6c0";
|
||||||
white = "#abb2bf";
|
white = "#dadada";
|
||||||
};
|
};
|
||||||
|
|
||||||
bright = {
|
bright = {
|
||||||
black = "#5c6370";
|
black = "#5a5a5a";
|
||||||
red = "#e06c75";
|
red = "#ff6b6b";
|
||||||
green = "#98c379";
|
green = "#00b300";
|
||||||
yellow = "#d19a66";
|
yellow = "#ffcc00";
|
||||||
blue = "#61afef";
|
blue = "#88ddcc";
|
||||||
magenta = "#c678dd";
|
magenta = "#c490d0";
|
||||||
cyan = "#56b6c2";
|
cyan = "#b3f6c0";
|
||||||
white = "#ffffff";
|
white = "#ffffff";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,9 +14,11 @@ in
|
||||||
vimdiffAlias = true;
|
vimdiffAlias = true;
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
lazygit
|
lazygit
|
||||||
|
cargo
|
||||||
|
rustc
|
||||||
gcc
|
gcc
|
||||||
fzf
|
fzf
|
||||||
rg
|
ripgrep
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 22675bf8a44bcc9f166a850f4827374a538dfab3
|
Subproject commit 14a67ba7d3210d915e26588da9d0326e8118d353
|
||||||
Loading…
Add table
Add a link
Reference in a new issue