stockholm/lass/1systems/coaxmetal/config.nix

64 lines
1.7 KiB
Nix
Raw Normal View History

2021-02-18 18:57:38 +00:00
{ config, lib, pkgs, ... }:
{
imports = [
<stockholm/lass>
<stockholm/lass/2configs/retiolum.nix>
<stockholm/lass/2configs/exim-retiolum.nix>
<stockholm/lass/2configs/baseX.nix>
<stockholm/lass/2configs/browsers.nix>
<stockholm/lass/2configs/programs.nix>
<stockholm/lass/2configs/network-manager.nix>
<stockholm/lass/2configs/syncthing.nix>
<stockholm/lass/2configs/sync/sync.nix>
<stockholm/lass/2configs/games.nix>
<stockholm/lass/2configs/steam.nix>
<stockholm/lass/2configs/wine.nix>
<stockholm/lass/2configs/fetchWallpaper.nix>
2023-01-04 20:00:29 +00:00
<stockholm/lass/2configs/yellow-mounts/samba.nix>
2021-02-18 18:57:38 +00:00
<stockholm/lass/2configs/pass.nix>
<stockholm/lass/2configs/mail.nix>
<stockholm/lass/2configs/bitcoin.nix>
2021-06-05 10:07:43 +00:00
<stockholm/lass/2configs/review.nix>
<stockholm/lass/2configs/dunst.nix>
# <stockholm/krebs/2configs/ircd.nix>
2021-02-18 18:57:38 +00:00
];
krebs.build.host = config.krebs.hosts.coaxmetal;
2021-06-05 10:07:43 +00:00
environment.systemPackages = with pkgs; [
brain
bank
l-gen-secrets
(pkgs.writeDashBin "deploy" ''
2021-02-18 18:57:38 +00:00
set -eu
export SYSTEM="$1"
$(nix-build $HOME/sync/stockholm/lass/krops.nix --no-out-link --argstr name "$SYSTEM" -A deploy)
2021-06-05 10:07:43 +00:00
'')
(pkgs.writeDashBin "usb-tether-on" ''
2021-02-18 18:57:38 +00:00
adb shell su -c service call connectivity 33 i32 1 s16 text
2021-06-05 10:07:43 +00:00
'')
(pkgs.writeDashBin "usb-tether-off" ''
2021-02-18 18:57:38 +00:00
adb shell su -c service call connectivity 33 i32 0 s16 text
2021-06-05 10:07:43 +00:00
'')
];
2021-02-18 18:57:38 +00:00
programs.adb.enable = true;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
hardware.pulseaudio.package = pkgs.pulseaudioFull;
2021-06-05 10:07:43 +00:00
nix.trustedUsers = [ "root" "lass" ];
services.tor = {
enable = true;
client.enable = true;
};
2022-03-09 20:27:50 +00:00
documentation.nixos.enable = true;
2021-02-18 18:57:38 +00:00
}