1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +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 = {
earlySetup = true;
font = "Lat2-Terminus16";
packages = with pkgs; [
terminus-nerdfont
];
packages = with pkgs; [ terminus-nerdfont ];
};
})
(with pkgs; systemFonts [
(nerdfonts.override {
fonts = [
"JetBrainsMono"
];
fonts = [ "JetBrainsMono" ];
})
])

View file

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

View file

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

View file

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