Compare commits

..

No commits in common. "4ceb7f78305e05da7dad175b805dbc9ac6d4780e" and "3a415ccce91f91e24bf792fe61f3f6cab63d4926" have entirely different histories.

6 changed files with 6 additions and 18 deletions

View file

@ -1,6 +0,0 @@
builds:
include:
- 'nixosConfigurations.*'
- 'homeConfigurations.*'
- '*.aarch64-linux.*'
- '*.x86_64-linux.*'

View file

@ -49,7 +49,6 @@ in
environment = { environment = {
DISPLAY = ":0"; # for xwayland-satellite DISPLAY = ":0"; # for xwayland-satellite
ANKI_WAYLAND = "1";
}; };
layout = { layout = {

View file

@ -40,6 +40,11 @@
}; };
}; };
home.sessionVariables = {
ANKI_WAYLAND = "1";
DISPLAY = ":0";
};
home.packages = with pkgs; [ home.packages = with pkgs; [
firefox firefox
ungoogled-chromium ungoogled-chromium

View file

@ -41,7 +41,7 @@
efi.canTouchEfiVariables = false; # toggle when installing efi.canTouchEfiVariables = false; # toggle when installing
}; };
tmp.cleanOnBoot = true; tmp.cleanOnBoot = true;
kernelPackages = pkgs.linuxKernel.packages.linux_zen; kernelPackages = pkgs.linuxPackages_6_12;
extraModulePackages = with config.boot.kernelPackages; [ extraModulePackages = with config.boot.kernelPackages; [
rtl8821ce rtl8821ce
]; ];

View file

@ -2,7 +2,6 @@ let
overlays = [ overlays = [
./conduwuit ./conduwuit
./attic ./attic
./kernel.nix
]; ];
importedOverlays = map (m: import m) overlays; importedOverlays = map (m: import m) overlays;
in in

View file

@ -1,9 +0,0 @@
final: prev: let
inherit (prev) lib;
in {
linuxKernels.kernels.linux_zen = prev.linuxKernels.kernels.linux_zen.override (old: {
extraStructuredConfig = with lib.kernel; {
CONFIG_SCHED_MUQSS = yes;
};
});
}