1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 12:07:48 +00:00

Better formatting

This commit is contained in:
RGBCube 2023-05-24 21:16:19 +03:00
parent 7b18ac23c7
commit a0397085ed
No known key found for this signature in database
9 changed files with 49 additions and 53 deletions

View file

@ -4,16 +4,12 @@
console = { console = {
earlySetup = true; earlySetup = true;
font = "Lat2-Terminus16"; font = "Lat2-Terminus16";
packages = with pkgs; [ packages = with pkgs; [ terminus-nerdfont ];
terminus-nerdfont
];
}; };
}) })
(with pkgs; systemFonts [ (with pkgs; systemFonts [
(nerdfonts.override { (nerdfonts.override {
fonts = [ fonts = [ "JetBrainsMono" ];
"JetBrainsMono"
];
}) })
]) ])

View file

@ -13,7 +13,7 @@ homeConfiguration "nixos" {
gds = "git diff --staged"; gds = "git diff --staged";
gp = "git push"; gp = "git push";
gs = "git stash"; gs = "git stash";
gss = "git status"; gst = "git status";
}; };
programs.git = enabled { programs.git = enabled {
@ -26,6 +26,7 @@ homeConfiguration "nixos" {
gpg.format = "ssh"; gpg.format = "ssh";
user.signingKey = "~/.ssh/id_rsa"; user.signingKey = "~/.ssh/id_rsa";
commit.gpgSign = true; commit.gpgSign = true;
url."ssh://git@github.com/".insteadOf = "https://github.com/"; url."ssh://git@github.com/".insteadOf = "https://github.com/";
}; };
}; };

View file

@ -18,10 +18,7 @@
cursorline = true; cursorline = true;
file-picker.hidden = false; file-picker.hidden = false;
line-number = "relative"; line-number = "relative";
shell = [ shell = [ "nu" "-c" ];
"nu"
"-c"
];
text-width = 100; text-width = 100;
}; };

View file

@ -7,15 +7,17 @@ systemConfiguration {
time.timeZone = "Europe/Istanbul"; time.timeZone = "Europe/Istanbul";
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = { i18n.extraLocaleSettings = let
LC_ADDRESS = "tr_TR.UTF-8"; locale = "tr_TR.UTF-8";
LC_IDENTIFICATION = "tr_TR.UTF-8"; in {
LC_MEASUREMENT = "tr_TR.UTF-8"; LC_ADDRESS = locale;
LC_MONETARY = "tr_TR.UTF-8"; LC_IDENTIFICATION = locale;
LC_NAME = "tr_TR.UTF-8"; LC_MEASUREMENT = locale;
LC_NUMERIC = "tr_TR.UTF-8"; LC_MONETARY = locale;
LC_PAPER = "tr_TR.UTF-8"; LC_NAME = locale;
LC_TELEPHONE = "tr_TR.UTF-8"; LC_NUMERIC = locale;
LC_TIME = "tr_TR.UTF-8"; LC_PAPER = locale;
LC_TELEPHONE = locale;
LC_TIME = locale;
}; };
} }