This commit is contained in:
sadan 2024-09-02 16:01:02 -04:00
parent f4b0cb805b
commit 82a8661ec1
No known key found for this signature in database
3 changed files with 13 additions and 3 deletions

View file

@ -76,7 +76,7 @@ in
};
# Use the systemd-boot EFI boot loader.
boot.loader.grub.device = "nodev";
boot.kernelPackages = pkgs.linuxPackages_zen;
boot.kernelPackages = pkgs.linuxPackages_testing;
boot.loader.grub.efiSupport = true;
boot.loader.grub.useOSProber = true;
boot.loader.grub.efiInstallAsRemovable = true;

View file

@ -18,12 +18,12 @@ in
gradle
lazygit
linuxHeaders
nodePackages.eslint
eslint
nodePackages.nodemon
nodePackages.ts-node
nodePackages.pnpm
corepack_22
nodePackages.prisma
prisma
prisma-engines
nodePackages.live-server
gh

View file

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