nixos-config/1systems/tsp/config.nix

37 lines
979 B
Nix
Raw Normal View History

2023-06-13 00:30:42 +02:00
{ config, pkgs, lib, self, ... }:
{
imports =
[ # Include the results of the hardware scan.
2021-03-12 20:12:04 +01:00
./hardware.nix
2023-06-13 00:30:42 +02:00
../../2configs/default.nix
2023-06-14 23:42:44 +02:00
# ../../2configs/nur.nix
2023-06-13 00:30:42 +02:00
2023-06-14 23:42:44 +02:00
# ../../2configs/nur.nix
../../2configs/home-manager
../../2configs/main-laptop.nix
../../2configs/editor/neovim
../../2configs/tools/core.nix
# ../../2configs/tools/all.nix
2023-06-23 22:58:27 +02:00
((import ../../2configs/fs/disko/single-disk-encrypted-zfs.nix ) { disk = "/dev/sda"; hostId = "f8b8e0a2"; })
2015-08-07 12:53:38 +02:00
# hardware specifics are in here
2023-06-14 23:42:44 +02:00
../../2configs/hw/bluetooth.nix
../../2configs/hw/network-manager.nix
2015-08-14 15:59:05 +02:00
2021-03-12 20:12:04 +01:00
2023-06-14 23:42:44 +02:00
# ../../2configs/rad1o.nix
2015-08-17 23:24:37 +02:00
2023-06-14 23:42:44 +02:00
../../2configs/zsh-user.nix
../../2configs/home-manager
../../2configs/home-manager/desktop.nix
../../2configs/home-manager/cli.nix
2018-09-17 01:11:57 +02:00
2023-06-13 00:30:42 +02:00
# still broken
2023-06-14 23:42:44 +02:00
# ../../2configs/tinc/retiolum.nix
# ../../2configs/sshd-totp.nix
];
2015-08-13 17:15:09 +02:00
nixpkgs.config.allowUnfree = true;
}