Skip to content

Latest commit

 

History

History
executable file
·
47 lines (37 loc) · 881 Bytes

index.md

File metadata and controls

executable file
·
47 lines (37 loc) · 881 Bytes

System

{ config, pkgs, inputs, modules, lib, ... }:
{
  imports = with inputs.hardware.nixosModules; [
    common-pc-laptop
    common-pc-laptop-ssd
    common-pc-laptop-hdd
    common-cpu-intel
  ] ++ [
    /${modules}/system
    ./hardware-configuration.nix
    ./net.nix
    ./services.nix
    /${modules}/system/services/print_scan/brotherDCP1612W.nix
    ./users.nix
  ];

  <<<PereBook/system>>>
}

Hardware

Mount data filesystem

fileSystems."/home/dpd-/datos" = {
  device = "/dev/disk/by-uuid/42681448-3710-4f0b-9778-994a23c7f17e";
  fsType = "ext4";
  options = [ "noatime" ];
};

Enable BTRFS compression

fileSystems."/".options = [ "compress=zstd" ];

Enable pen tablet FOSS drivers

hardware.opentabletdriver.enable = true;