summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/sdev/config.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
committermakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
commit060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch)
tree2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/1systems/sdev/config.nix
parentcbfcc890e3b76d942b927809bf981a5fa7289e6a (diff)
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/1systems/sdev/config.nix')
-rw-r--r--makefu/1systems/sdev/config.nix54
1 files changed, 0 insertions, 54 deletions
diff --git a/makefu/1systems/sdev/config.nix b/makefu/1systems/sdev/config.nix
deleted file mode 100644
index d02c3034..00000000
--- a/makefu/1systems/sdev/config.nix
+++ /dev/null
@@ -1,54 +0,0 @@
-{ lib, config, pkgs, ... }:
-{
- krebs.build.host = config.krebs.hosts.sdev;
- makefu.awesome.modkey = "Mod1";
- imports =
- [ # Include the results of the hardware scan.
- <stockholm/makefu>
- <stockholm/makefu/2configs/home-manager>
-
- # <stockholm/makefu/2configs/hw/vbox-guest.nix> # broken since 2019-04-18
- { # until virtualbox-image is fixed
- imports = [
- <stockholm/makefu/2configs/fs/single-partition-ext4.nix>
- ];
- boot.loader.grub.device = lib.mkForce "/dev/sda";
- }
- <stockholm/makefu/2configs/main-laptop.nix>
- # <secrets/extra-hosts.nix>
-
- # environment
- <stockholm/makefu/2configs/tinc/retiolum.nix>
- <stockholm/makefu/2configs/virtualisation/docker.nix>
-
- ];
- # allow sdev to deploy self
- users.extraUsers = {
- root = {
- openssh.authorizedKeys.keys = [ config.krebs.users.makefu-vbob.pubkey ];
- };
- };
- # corefonts
- nixpkgs.config.allowUnfree = true;
-
- environment.systemPackages = with pkgs;[
- ppp xclip
- get
- passwdqc-utils
- gnupg
- populate
- # 20.09: torbrowser is broken
- #(pkgs.writeScriptBin "tor-browser" ''
- # #! /bin/sh
- # TOR_SKIP_LAUNCH=1 ${torbrowser}/bin/tor-browser
- #'')
- ];
-
- networking.firewall.allowedTCPPorts = [
- 25
- 80
- 8010
- ];
-
-
-}