summary refs log tree commit diff stats
path: root/satoshipad.nix
blob: 25aaf284cf689225bf77905c66f207c01d92297d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ config, pkgs, ... }:

{
  imports = [
    ./hardware-configuration.nix
    ./private/default.nix

    ./modules/base.nix
    ./modules/configuration/berlin.nix
    ./modules/configuration/british-english.nix
    ./modules/configuration/nix.nix
    ./modules/configuration/user.nix
    ./modules/development/base.nix
    ./modules/development/javascript.nix
    ./modules/development/lisp.nix
    ./modules/hardware/audio.nix
    ./modules/hardware/systemd-boot.nix
    ./modules/hardware/keyboardio-model01.nix
    ./modules/hardware/network-manager.nix
    ./modules/hardware/qwerty.nix
    ./modules/hardware/trackball.nix
    ./modules/hardware/trezor.nix
    ./modules/machines/t470s.nix
    ./modules/programs/accounting.nix
    ./modules/programs/dotfiles.nix
    ./modules/programs/gnupg.nix
    ./modules/programs/keybase.nix
    ./modules/programs/tor.nix
    ./modules/programs/i3.nix
    ./modules/programs/infrastructure.nix
    ./modules/programs/passwords.nix
    ./modules/programs/shell.nix
    ./modules/programs/wine.nix
    ./modules/satoshipay.nix
  ];

  boot.initrd.luks.devices = [
    {
      name = "root";
      allowDiscards = true;
      device = "/dev/disk/by-uuid/bb7f9a24-8963-4d00-9258-118050b35748";
      preLVM = true;
    }
  ];

  networking.hostName = "satoshipad";

  nix.gc.dates = "12:30";
  system.autoUpgrade.dates = "13:24";
  virtualisation.docker.autoPrune.dates = "Mon, 13:00";

  system.stateVersion = "18.03";
}