summaryrefslogtreecommitdiffstats
path: root/1systems/tsp/config.nix
blob: 74c4e561655a0559dcb347fe5b45583cf3fd8de4 (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
{ config, pkgs, lib, self, ... }:

{
  imports =
    [ # Include the results of the hardware scan.
      ./hardware.nix
      ../../2configs/default.nix
            # (self + "/2configs/nur.nix")

      # (self + "/2configs/nur.nix")
      (self + "/2configs/home-manager")
      (self + "/2configs/main-laptop.nix")
      (self + "/2configs/editor/neovim")
      (self + "/2configs/tools/core.nix")
      # (self + "/2configs/tools/all.nix")

      ((import  ../../2configs/fs/disko/single-disk-encrypted-zfs.nix ) { disks = ["/dev/sda" ]; hostId = "f8b8e0a2"; })
      # hardware specifics are in here
      (self + "/2configs/hw/bluetooth.nix")
      (self + "/2configs/hw/network-manager.nix")


      # (self + "/2configs/rad1o.nix")

      (self + "/2configs/zsh-user.nix")
      (self + "/2configs/home-manager")
      (self + "/2configs/home-manager/desktop.nix")
      (self + "/2configs/home-manager/cli.nix")

      # still broken
      #(self + "/2configs/tinc/retiolum.nix")
      # (self + "/2configs/sshd-totp.nix")
    ];

  nixpkgs.config.allowUnfree = true;
}