minor cleanup
This commit is contained in:
parent
fac1c0a7ed
commit
d51b678369
10
flake.nix
10
flake.nix
|
@ -16,7 +16,15 @@
|
|||
# temp
|
||||
inputs.pr-polaris14.url = "github:pbsds/nixpkgs/polaris-14";
|
||||
|
||||
outputs = { self, nixpkgs, unstable, nixos-hardware, nur, home-manager, ... }@inputs:
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
unstable,
|
||||
nixos-hardware,
|
||||
nur,
|
||||
home-manager,
|
||||
...
|
||||
} @ inputs:
|
||||
let
|
||||
systems = [
|
||||
"x86_64-linux"
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
# Bootloader
|
||||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.device = "/dev/nvme0n1";
|
||||
boot.loader.grub.useOSProber = true;
|
||||
##boot.loader.grub.enable = true; # BIOS
|
||||
#boot.loader.systemd-boot.enable = true; # UEFI
|
||||
##boot.loader.grub.device = "/dev/nvme0n1"; # BIOS
|
||||
#boot.loader.grub.device = "nodev"; # if UEFI + GRUB
|
||||
#boot.loader.grub.efiSupport = true; # if UEFI + GRUB
|
||||
#boot.loader.grub.useOSProber = true; # alongside other OSes
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
|
||||
|
|
Loading…
Reference in New Issue