From 4b0c88736979fe2cb8e98e8e0ae12caf7e876141 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Tue, 25 Apr 2023 20:21:03 +0100 Subject: Add config --- nixos/hardware-configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 nixos/hardware-configuration.nix (limited to 'nixos/hardware-configuration.nix') diff --git a/nixos/hardware-configuration.nix b/nixos/hardware-configuration.nix new file mode 100644 index 0000000..dd00939 --- /dev/null +++ b/nixos/hardware-configuration.nix @@ -0,0 +1,10 @@ +# This is just an example, you should generate yours with nixos-generate-config and put it in here. +{ + fileSystems."/" = { + device = "/dev/sda1"; + fsType = "ext4"; + }; + + # Set your system kind (needed for flakes) + nixpkgs.hostPlatform = "x86_64-linux"; +} -- cgit v1.2.3-54-g00ecf