Updated flake inputs
This commit is contained in:
14
modules/sys/sysenv/console.nix
Normal file
14
modules/sys/sysenv/console.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ lib, config, pkgs, ... }: {
|
||||
options = {
|
||||
movOpts.sysEnv.consoleSettings.enable =
|
||||
lib.mkEnableOption "enables my console settings";
|
||||
};
|
||||
config = lib.mkIf config.movOpts.sysEnv.consoleSettings.enable {
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
console = {
|
||||
earlySetup = true;
|
||||
font = "Lat2-Terminus32";
|
||||
packages = with pkgs; [ terminus_font ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user