updated stuff

This commit is contained in:
2021-05-22 11:35:23 +05:30
parent dadc9192ff
commit 5364156d58
9 changed files with 66 additions and 13 deletions

22
marisa/hardware.nix Executable file
View File

@@ -0,0 +1,22 @@
# 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 ];
}