summaryrefslogtreecommitdiff
path: root/kuro/configuration.nix
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-03-27 19:24:01 +0100
committerChristoph Cullmann <cullmann@kde.org>2024-03-27 19:24:01 +0100
commit974bf05be798244fc2ca80e78804c7e61875fc18 (patch)
tree10d6f4fb3a62636af8c6e39aac849006307cf1f3 /kuro/configuration.nix
parent3e84f8680d2eb97bee8c10a8e961ec9e75d0a77c (diff)
remove no longer used machines
Diffstat (limited to 'kuro/configuration.nix')
-rw-r--r--kuro/configuration.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/kuro/configuration.nix b/kuro/configuration.nix
deleted file mode 100644
index aaeb0c9..0000000
--- a/kuro/configuration.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-# Edit this configuration file to define what should be installed on
-# your system. Help is available in the configuration.nix(5) man page
-# and in the NixOS manual (accessible by running `nixos-help`).
-
-{ config, pkgs, ... }:
-
-{
- imports =
- [
- # Include the results of the hardware scan.
- ./hardware-configuration.nix
-
- # Shared config of all machines
- /data/nixos/common.nix
- ];
-
- # amd graphics
- hardware.opengl.extraPackages = with pkgs; [ amdvlk rocm-opencl-icd rocm-opencl-runtime ];
-
- # use systemd-networkd, fixed IPv4, dynamic IPv6
- networking.hostName = "kuro";
- networking.useDHCP = false;
- networking.nameservers = [ "192.168.13.1" ];
- systemd.network = {
- enable = true;
- networks."10-wan" = {
- matchConfig.Name = "enp2s0";
- address = [ "192.168.13.101/24" ];
- routes = [ { routeConfig.Gateway = "192.168.13.1"; } ];
- networkConfig.IPv6AcceptRA = true;
- linkConfig.RequiredForOnline = "routable";
- };
- };
-}