diff options
author | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
commit | 060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch) | |
tree | 2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/1systems/sdev | |
parent | cbfcc890e3b76d942b927809bf981a5fa7289e6a (diff) |
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/1systems/sdev')
-rw-r--r-- | makefu/1systems/sdev/config.nix | 54 | ||||
-rw-r--r-- | makefu/1systems/sdev/source.nix | 7 |
2 files changed, 0 insertions, 61 deletions
diff --git a/makefu/1systems/sdev/config.nix b/makefu/1systems/sdev/config.nix deleted file mode 100644 index d02c30342..000000000 --- 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 - ]; - - -} diff --git a/makefu/1systems/sdev/source.nix b/makefu/1systems/sdev/source.nix deleted file mode 100644 index d6c3d2031..000000000 --- a/makefu/1systems/sdev/source.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ - name="sdev"; - home-manager = true; - hw = true; - mic92 = true; - unstable = true; -} |