diff --git a/roles/all.nix b/roles/all.nix index 18aa1f8..d43b9ba 100644 --- a/roles/all.nix +++ b/roles/all.nix @@ -1,4 +1,8 @@ -{pkgs, ...}:{ +{pkgs, config, ...}: +let + consoleFont = hiDPI : if hiDPI then "Lat2-Terminus16" else "Lat2-Terminus20"; +in +{ imports = [ ../home-manager/default.nix @@ -44,6 +48,8 @@ }; + console.font = consoleFont config.my.highDPI; + networking.extraHosts = '' ''; }