23 lines
613 B
Nix
Executable File
23 lines
613 B
Nix
Executable File
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||
# and may be overwritten by future invocations. Please make changes
|
||
# to /etc/nixos/configuration.nix instead.
|
||
{ config, lib, pkgs, ... }:
|
||
|
||
{
|
||
fileSystems."/" =
|
||
{ device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
|
||
fsType = "ext4";
|
||
};
|
||
|
||
fileSystems."/nix/store" =
|
||
{ device = "/nix/store";
|
||
fsType = "none";
|
||
options = [ "bind" ];
|
||
};
|
||
|
||
swapDevices = [ ];
|
||
|
||
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
||
hardware.firmware = with pkgs; [ raspberrypiWirelessFirmware ];
|
||
}
|