2015-08-11 21:00:22 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
2017-11-08 10:54:44 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
2015-08-02 23:12:38 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
2021-03-12 20:12:04 +01:00
|
|
|
./hardware.nix
|
2017-07-15 19:01:02 +02:00
|
|
|
<stockholm/makefu>
|
2021-03-12 20:12:04 +01:00
|
|
|
<stockholm/makefu/2configs/nur.nix>
|
2020-07-14 23:09:49 +02:00
|
|
|
<stockholm/makefu/2configs/home-manager>
|
2017-11-08 10:54:44 +01:00
|
|
|
<stockholm/makefu/2configs/main-laptop.nix>
|
2021-03-12 20:12:04 +01:00
|
|
|
<stockholm/makefu/2configs/editor/neovim>
|
|
|
|
<stockholm/makefu/2configs/tools/core.nix>
|
2018-09-17 01:11:57 +02:00
|
|
|
# <stockholm/makefu/2configs/tools/all.nix>
|
|
|
|
<stockholm/makefu/2configs/fs/single-partition-ext4.nix>
|
2015-08-07 12:53:38 +02:00
|
|
|
# hardware specifics are in here
|
2018-09-17 01:11:57 +02:00
|
|
|
<stockholm/makefu/2configs/hw/bluetooth.nix>
|
|
|
|
<stockholm/makefu/2configs/hw/network-manager.nix>
|
2015-08-14 15:59:05 +02:00
|
|
|
|
2021-03-12 20:12:04 +01:00
|
|
|
|
2017-11-08 10:54:44 +01:00
|
|
|
# <stockholm/makefu/2configs/rad1o.nix>
|
2015-08-17 23:24:37 +02:00
|
|
|
|
2017-07-15 19:01:02 +02:00
|
|
|
<stockholm/makefu/2configs/zsh-user.nix>
|
2021-03-12 20:12:04 +01:00
|
|
|
<stockholm/makefu/2configs/home-manager>
|
|
|
|
<stockholm/makefu/2configs/home-manager/desktop.nix>
|
|
|
|
<stockholm/makefu/2configs/home-manager/cli.nix>
|
2017-07-15 19:01:02 +02:00
|
|
|
<stockholm/makefu/2configs/tinc/retiolum.nix>
|
2018-09-17 01:11:57 +02:00
|
|
|
|
|
|
|
<stockholm/makefu/2configs/sshd-totp.nix>
|
|
|
|
{
|
|
|
|
programs.adb.enable = true;
|
|
|
|
}
|
2015-08-02 23:12:38 +02:00
|
|
|
];
|
|
|
|
krebs.build.host = config.krebs.hosts.tsp;
|
2018-09-17 01:11:57 +02:00
|
|
|
boot.loader.grub.device = "/dev/sda";
|
2015-08-17 23:24:37 +02:00
|
|
|
|
2015-08-13 17:15:09 +02:00
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
25
|
|
|
|
];
|
|
|
|
|
2019-11-07 10:59:12 +01:00
|
|
|
hardware.enableRedistributableFirmware = true;
|
2017-11-08 10:54:44 +01:00
|
|
|
nixpkgs.config.allowUnfree = true;
|
2015-08-02 23:12:38 +02:00
|
|
|
}
|