aboutsummaryrefslogtreecommitdiff
path: root/nixos/hardware-configuration.nix
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-04-25 20:21:03 +0100
committerFrankie B <git@diskfloppy.me>2023-04-25 20:21:03 +0100
commit4b0c88736979fe2cb8e98e8e0ae12caf7e876141 (patch)
treea3ddb2df189c952758b7b84c593738c154869777 /nixos/hardware-configuration.nix
Add config
Diffstat (limited to 'nixos/hardware-configuration.nix')
-rw-r--r--nixos/hardware-configuration.nix10
1 files changed, 10 insertions, 0 deletions
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";
+}