[NixOS] Fix flakes for raspberry pi

This commit is contained in:
2021-07-11 17:23:59 +00:00
parent 6163358c8f
commit 3404d3c196
4 changed files with 12 additions and 18 deletions

View File

@@ -2,7 +2,6 @@
{
imports = [
<nixos-hardware/raspberry-pi/4>
./base.nix
];
@@ -31,17 +30,6 @@
networking.interfaces.eth0.useDHCP = true;
networking.interfaces.wlan0.useDHCP = true;
# Enable the X11 windowing system.
services.xserver = {
exportConfiguration = true;
layout = "us";
enable = true;
desktopManager = {
plasma5.enable = true;
};
displayManager.sddm.enable = true;
};
powerManagement.cpuFreqGovernor = "ondemand";
fileSystems."/" = {
@@ -50,8 +38,6 @@
options = [ "noatime" ];
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
raspberrypi-eeprom
];