mirror of
https://github.com/nikdoof/nixos-config.git
synced 2025-12-13 09:42:19 +00:00
Console tweaks
This commit is contained in:
27
common.nix
27
common.nix
@@ -5,6 +5,10 @@
|
|||||||
./users.nix
|
./users.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nix.settings.max-jobs = lib.mkDefault 1;
|
||||||
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
nix.settings.auto-optimise-store = true;
|
||||||
|
|
||||||
users.motdFile = builtins.path {
|
users.motdFile = builtins.path {
|
||||||
path = ./files/motd;
|
path = ./files/motd;
|
||||||
name = "motd";
|
name = "motd";
|
||||||
@@ -18,16 +22,35 @@
|
|||||||
# Select internationalisation properties.
|
# Select internationalisation properties.
|
||||||
i18n.defaultLocale = "en_GB.UTF-8";
|
i18n.defaultLocale = "en_GB.UTF-8";
|
||||||
console = {
|
console = {
|
||||||
font = "Lat2-Terminus16";
|
packages = [ pkgs.spleen ];
|
||||||
|
font = "spleen-16x32";
|
||||||
useXkbConfig = true; # use xkb.options in tty.
|
useXkbConfig = true; # use xkb.options in tty.
|
||||||
|
colors = [
|
||||||
|
"363537"
|
||||||
|
"ff6188"
|
||||||
|
"a9dc76"
|
||||||
|
"ffd866"
|
||||||
|
"fc9867"
|
||||||
|
"ab9df2"
|
||||||
|
"78dce8"
|
||||||
|
"fdf9f3"
|
||||||
|
"908e8f"
|
||||||
|
"ff6188"
|
||||||
|
"a9dc76"
|
||||||
|
"ffd866"
|
||||||
|
"fc9867"
|
||||||
|
"ab9df2"
|
||||||
|
"78dce8"
|
||||||
|
"fdf9f3"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
git.enable = true;
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
git
|
|
||||||
gnupg
|
gnupg
|
||||||
lsof
|
lsof
|
||||||
gnumake
|
gnumake
|
||||||
|
|||||||
Reference in New Issue
Block a user