diff options
author | Alan Pearce | 2017-09-09 14:41:35 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-09 16:49:30 +0200 |
commit | 3bea12cd01499c02b0f5d8b33b658b529ebf9d1e (patch) | |
tree | 3e722aac2e57b9f86cc2824ffde9182820164a0c | |
parent | c24e26149c78725b33c68b6bce46cc9fc79f9bea (diff) | |
download | nixos-configuration-3bea12cd01499c02b0f5d8b33b658b529ebf9d1e.tar.lz nixos-configuration-3bea12cd01499c02b0f5d8b33b658b529ebf9d1e.tar.zst nixos-configuration-3bea12cd01499c02b0f5d8b33b658b529ebf9d1e.zip |
Create hidpi configuration module
-rw-r--r-- | modules/hidpi.nix | 9 | ||||
-rw-r--r-- | satoshipad.nix | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/modules/hidpi.nix b/modules/hidpi.nix new file mode 100644 index 0000000..1f4644c --- /dev/null +++ b/modules/hidpi.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ i18n = { + consoleFont = "ter-v24b"; + consolePackages = with pkgs; [ + terminus_font + ]; + }; +} diff --git a/satoshipad.nix b/satoshipad.nix index 687980f..7bd3926 100644 --- a/satoshipad.nix +++ b/satoshipad.nix @@ -9,6 +9,7 @@ ./modules/audio.nix ./modules/adb.nix ./modules/syncthing.nix + ./modules/hidpi.nix ]; networking.hostName = "satoshipad"; |