Attempt to Fix Issues Again

- Move disko nix file to flake out of configuration.nix
- Move efiSysMountPoint back to /boot
- Disable pulseaudio since pipewire is in use
This commit is contained in:
Sravan Balaji
2024-03-24 15:18:50 -04:00
parent 2b82e449bf
commit 6c06028e80
3 changed files with 3 additions and 3 deletions

View File

@ -90,6 +90,7 @@
modules = [
(./. + "/profiles" + ("/" + systemSettings.profile) + "/configuration.nix")
disko.nixosModules.disko
(./. + "/disko" + ("/" + systemSettings.diskoConfig) + ".nix")
];
specialArgs = {
inherit pkgs-stable;

View File

@ -7,7 +7,6 @@
{
imports = [
../../system/hardware-configuration.nix
../../disko/${systemSettings.diskoConfig}.nix
../../system/hardware/kernel.nix
../../system/hardware/bluetooth.nix
../../system/hardware/opengl.nix
@ -35,7 +34,7 @@
loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/EFI";
efiSysMountPoint = "/boot";
};
grub = {
enable = true;

View File

@ -2,7 +2,7 @@
{
environment.systemPackages = [ pkgs.pipewire ];
hardware.pulseaudio.enable = true;
hardware.pulseaudio.enable = false;
sound.enable = true;
security.rtkit.enable = true;
services.pipewire = {