summaryrefslogtreecommitdiffstats
path: root/lass/1systems/skynet
diff options
context:
space:
mode:
Diffstat (limited to 'lass/1systems/skynet')
-rw-r--r--lass/1systems/skynet/config.nix41
-rw-r--r--lass/1systems/skynet/physical.nix29
2 files changed, 0 insertions, 70 deletions
diff --git a/lass/1systems/skynet/config.nix b/lass/1systems/skynet/config.nix
deleted file mode 100644
index 4da4dffb..00000000
--- a/lass/1systems/skynet/config.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ config, pkgs, ... }:
-with import <stockholm/lib>;
-{
- imports = [
- <stockholm/lass>
-
- <stockholm/lass/2configs/retiolum.nix>
- <stockholm/lass/2configs/blue-host.nix>
- <stockholm/lass/2configs/green-host.nix>
- <stockholm/lass/2configs/power-action.nix>
- <stockholm/lass/2configs/syncthing.nix>
- {
- services.xserver.enable = true;
- services.xserver.desktopManager.xfce.enable = true;
-
- users.users.discordius = {
- uid = genid "diskordius";
- isNormalUser = true;
- extraGroups = [
- "audio"
- "networkmanager"
- ];
- };
- environment.systemPackages = with pkgs; [
- google-chrome
- ];
- hardware.pulseaudio = {
- enable = true;
- systemWide = true;
- };
- }
- ];
-
- krebs.build.host = config.krebs.hosts.skynet;
-
- networking.wireless.enable = false;
- networking.networkmanager.enable = true;
-
- services.logind.lidSwitch = "ignore";
- services.logind.lidSwitchDocked = "ignore";
-}
diff --git a/lass/1systems/skynet/physical.nix b/lass/1systems/skynet/physical.nix
deleted file mode 100644
index 1ac9708c..00000000
--- a/lass/1systems/skynet/physical.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- imports = [
- ./config.nix
- <stockholm/krebs/2configs/hw/x220.nix>
- ];
-
- boot.loader.grub.enable = true;
- boot.loader.grub.version = 2;
- boot.loader.grub.efiSupport = true;
- boot.loader.grub.efiInstallAsRemovable = true;
- boot.loader.grub.device = "nodev";
-
- networking.hostId = "06442b9a";
-
- fileSystems."/" = {
- device = "rpool/root";
- fsType = "zfs";
- };
-
- fileSystems."/boot" = {
- device = "/dev/disk/by-uuid/0876-B308";
- fsType = "vfat";
- };
-
- services.udev.extraRules = ''
- SUBSYSTEM=="net", ATTR{address}=="10:0b:a9:a6:44:04", NAME="wl0"
- SUBSYSTEM=="net", ATTR{address}=="f0:de:f1:d1:90:fc", NAME="et0"
- '';
-}