From 29ab966ea460cb0b02fe60dc5d91dae5dca123e4 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 24 Mar 2021 22:04:33 +0100 Subject: [PATCH] poseidon: move boot btrfs line --- hosts/poseidon/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hosts/poseidon/default.nix b/hosts/poseidon/default.nix index d8da552..b4d487a 100644 --- a/hosts/poseidon/default.nix +++ b/hosts/poseidon/default.nix @@ -17,6 +17,8 @@ in boot.loader.grub.version = 2; boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only + boot.supportedFilesystems = [ "btrfs" ]; + networking.hostName = "poseidon"; # Define your hostname. networking.domain = "alarsyo.net"; @@ -129,7 +131,4 @@ in services.openssh.enable = true; services.openssh.permitRootLogin = "no"; services.openssh.passwordAuthentication = false; - - - boot.supportedFilesystems = [ "btrfs" ]; }