minor cleanup
This commit is contained in:
parent
fac1c0a7ed
commit
d51b678369
10
flake.nix
10
flake.nix
|
@ -16,7 +16,15 @@
|
||||||
# temp
|
# temp
|
||||||
inputs.pr-polaris14.url = "github:pbsds/nixpkgs/polaris-14";
|
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
|
let
|
||||||
systems = [
|
systems = [
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
# Bootloader
|
# Bootloader
|
||||||
boot.loader.grub.enable = true;
|
##boot.loader.grub.enable = true; # BIOS
|
||||||
boot.loader.grub.device = "/dev/nvme0n1";
|
#boot.loader.systemd-boot.enable = true; # UEFI
|
||||||
boot.loader.grub.useOSProber = true;
|
##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 = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue