Skip to content

Commit

Permalink
2024/06/10-14:58:55
Browse files Browse the repository at this point in the history
  • Loading branch information
1nv0k32 committed Jun 10, 2024
1 parent 99809de commit eb3c237
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/base.nix
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ with lib;
console = {
earlySetup = mkDefault true;
packages = [ pkgs.terminus_font ];
font = mkDefault "${pkgs.terminus_font}/share/consolefonts/ter-v32b.psf.gz";
font = mkDefault "${pkgs.terminus_font}/share/consolefonts/ter-v24b.psf.gz";
keyMap = mkDefault "us";
};

Expand Down
1 change: 0 additions & 1 deletion src/extra.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ with lib;
{
boot = {
blacklistedKernelModules = mkDefault [ "snd_pcsp" ];
extraModprobeConfig = mkDefault "options kvm_amd nested=1";
loader = {
efi.canTouchEfiVariables = mkDefault true;
timeout = mkDefault 0;
Expand Down
6 changes: 5 additions & 1 deletion system/z13.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ with lib;
(import ../overlays/initrd-luks.nix)
];

boot.kernelPackages = pkgs.linuxPackages_latest;
boot = {
kernelPackages = pkgs.linuxPackages_latest;
extraModprobeConfig = "options kvm_amd nested=1";
initrd.kernelModules = [ "amdgpu" ];
};

services = {
tlp = {
Expand Down

0 comments on commit eb3c237

Please sign in to comment.