about summary refs log tree commit diff
path: root/hosts/aptos/profile.nix
blob: 4e5b48dc3dbb2370f6a04ab7e6dbec61cafd1b28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ ... }: {

  # Install tools related to the scanner (scanimage etc)
  hardware.sane.enable = true;

  my.profiles = {
    # Laptop specific configuration
    laptop.enable = true;
    bluetooth.enable = true;
    desktop.enable = true;
    multimedia.enable = true;
    trusted.enable = true;
  };
}