Initial pi config

This commit is contained in:
2023-12-03 23:17:30 +00:00
parent 5c591c0a06
commit 4ad4814bed
4 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ config, lib, pkgs, modulesPath, ... }:
{
imports = [
<nixos-hardware/raspberry-pi/4>
];
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
options = [ "noatime" ];
};
};
}