1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Use Terminus for TTY font again and fix network?

This commit is contained in:
RGBCube 2023-05-22 22:08:14 +03:00
parent f309839b7e
commit bf668b052b
No known key found for this signature in database
3 changed files with 9 additions and 4 deletions

View file

@ -14,6 +14,6 @@
console = {
earlySetup = true;
font = "Lat2-Terminus16";
packages = [ pkgs.terminus ];
packages = [ pkgs.terminus-nerdfont ];
};
})

View file

@ -1,4 +1,4 @@
{ systemConfiguration, ... }:
{ systemConfiguration, enabled, ... }:
systemConfiguration {
powerManagement.cpuFreqGovernor = "performance";
@ -17,7 +17,7 @@ systemConfiguration {
];
boot.loader = {
systemd-boot.enable = true;
systemd-boot = enabled {};
efi.canTouchEfiVariables = true;
efi.efiSysMountPoint = "/boot/efi";
};

View file

@ -1,5 +1,10 @@
{ systemConfiguration, enabled, ... }:
systemConfiguration {
networking.networkmanager = enabled {};
networking = {
wireless.iwd = enabled {};
networkmanager = enabled {
wifi.backend = "iwd";
};
};
}