223 current 2024-09-02 16:18:24 24.11.20240831.12228ff 6.11.0-rc5 *

This commit is contained in:
sadan 2024-09-02 16:18:36 -04:00
parent 82a8661ec1
commit 6514aaea5a
No known key found for this signature in database
2 changed files with 11 additions and 8 deletions

View file

@ -80,6 +80,7 @@ in
boot.loader.grub.efiSupport = true; boot.loader.grub.efiSupport = true;
boot.loader.grub.useOSProber = true; boot.loader.grub.useOSProber = true;
boot.loader.grub.efiInstallAsRemovable = true; boot.loader.grub.efiInstallAsRemovable = true;
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
# add user to "openrazer" group # add user to "openrazer" group
hardware.openrazer.enable = true; hardware.openrazer.enable = true;
hardware.openrazer.users = [ "meyer" ]; hardware.openrazer.users = [ "meyer" ];

View file

@ -23,14 +23,16 @@
{ {
nixosConfigurations = { nixosConfigurations = {
desktopIso = nixpkgs.lib.nixosSystem { desktopIso = nixpkgs.lib.nixosSystem {
system = "aarch64-linux"; system = "aarch64-linux";
modules = [ modules = [
./boxes/desktop/configuration.nix # ./boxes/desktop/configuration.nix
inputs.home-manager.nixosModules.default # inputs.home-manager.nixosModules.default
({ pkgs, modulesPath, ...}: { ({ pkgs, modulesPath, ... }: {
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")]; imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
}) boot.kernelPackages = pkgs.linuxPackages_testing;
]; nixpkgs.config.allowBroken = true;
})
];
}; };
desktop = nixpkgs.lib.nixosSystem { desktop = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };