diff options
| author | Dominik Kaiser | 2025-02-15 15:57:54 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-15 15:57:54 +0100 |
| commit | 1bfb25dfdee427fe190ec310fad3c9c6f423fadb (patch) | |
| tree | fed7c4f3d059771def81634fff345f8ea5c598c6 /nixos/hardware-configuration.nix | |
| download | nixos-old-1bfb25dfdee427fe190ec310fad3c9c6f423fadb.tar.gz nixos-old-1bfb25dfdee427fe190ec310fad3c9c6f423fadb.zip | |
Copy starter config
Diffstat (limited to 'nixos/hardware-configuration.nix')
| -rw-r--r-- | nixos/hardware-configuration.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nixos/hardware-configuration.nix b/nixos/hardware-configuration.nix new file mode 100644 index 0000000..1c4b000 --- /dev/null +++ b/nixos/hardware-configuration.nix @@ -0,0 +1,12 @@ +# This is just an example, you should generate yours with nixos-generate-config and put it in here. +{ + boot.loader.systemd-boot.enable = true; + + fileSystems."/" = { + device = "/dev/sda1"; + fsType = "ext4"; + }; + + # Set your system kind (needed for flakes) + nixpkgs.hostPlatform = "x86_64-linux"; +} |
