Last active
May 30, 2022 15:34
-
-
Save domenkozar/15ac372c16defe4a793b0ec3e4c400a1 to your computer and use it in GitHub Desktop.
NixOS Raspberry Pi 4 configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, pkgs, lib, ... }: | |
let | |
user = "guest"; | |
password = "guest"; | |
SSID = "mywifi"; | |
SSIDpassword = "mypassword"; | |
interface = "wlan0"; | |
hostname = "myhostname"; | |
in { | |
imports = ["${fetchTarball "https://github.com/NixOS/nixos-hardware/archive/936e4649098d6a5e0762058cb7687be1b2d90550.tar.gz" }/raspberry-pi/4"]; | |
fileSystems = { | |
"/" = { | |
device = "/dev/disk/by-label/NIXOS_SD"; | |
fsType = "ext4"; | |
options = [ "noatime" ]; | |
}; | |
}; | |
networking = { | |
hostName = hostname; | |
wireless = { | |
enable = true; | |
networks."${SSID}".psk = SSIDpassword; | |
interfaces = [ interface ]; | |
}; | |
}; | |
environment.systemPackages = with pkgs; [ vim ]; | |
services.openssh.enable = true; | |
users = { | |
mutableUsers = false; | |
users."${user}" = { | |
isNormalUser = true; | |
password = password; | |
extraGroups = [ "wheel" ]; | |
}; | |
}; | |
# Enable GPU acceleration | |
hardware.raspberry-pi."4".fkms-3d.enable = true; | |
services.xserver = { | |
enable = true; | |
displayManager.lightdm.enable = true; | |
desktopManager.xfce.enable = true; | |
}; | |
hardware.pulseaudio.enable = true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment