porthos: hardware: clean-up style

This commit is contained in:
Bruno BELANYI 2021-02-07 10:44:53 +00:00
parent 4f0a66c80e
commit 5e06025d67

View file

@ -2,19 +2,18 @@
{ lib, modulesPath, ... }: { lib, modulesPath, ... }:
{ {
imports = imports = [
[
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
fileSystems."/" = fileSystems."/" = {
{
device = "/dev/disk/by-uuid/d89efc61-6b03-4190-b488-301c919e2431"; device = "/dev/disk/by-uuid/d89efc61-6b03-4190-b488-301c919e2431";
fsType = "ext4"; fsType = "ext4";
}; };
swapDevices = swapDevices = [
[{ device = "/dev/disk/by-uuid/1a261204-2e78-496f-8a8d-d29bfa770306"; }]; { device = "/dev/disk/by-uuid/1a261204-2e78-496f-8a8d-d29bfa770306"; }
];
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand"; powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
} }