diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-11-12 11:25:27 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-11-12 11:25:27 -0800 |
commit | 28d1d991037093442cd76e83e597e22c6440904d (patch) | |
tree | 7f351d6d37d36812378308bf338b66251926d771 /hosts | |
parent | 42ee69589375c88b689412c41b9c7f47396e10e0 (diff) | |
download | nix-28d1d991037093442cd76e83e597e22c6440904d.tar nix-28d1d991037093442cd76e83e597e22c6440904d.tar.gz nix-28d1d991037093442cd76e83e597e22c6440904d.tar.bz2 nix-28d1d991037093442cd76e83e597e22c6440904d.tar.lz nix-28d1d991037093442cd76e83e597e22c6440904d.tar.xz nix-28d1d991037093442cd76e83e597e22c6440904d.tar.zst nix-28d1d991037093442cd76e83e597e22c6440904d.zip |
Fix boot @ginaz
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/ginaz/hardware-configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hosts/ginaz/hardware-configuration.nix b/hosts/ginaz/hardware-configuration.nix index cbfda8a..3b9b038 100644 --- a/hosts/ginaz/hardware-configuration.nix +++ b/hosts/ginaz/hardware-configuration.nix @@ -13,6 +13,10 @@ boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; + fileSystems."/boot" = { + device = "/dev/disk/by-label/boot"; + }; + hardware = { bluetooth.enable = true; #bluetooth.powerOnBoot = true; |