about summary refs log tree commit diff
path: root/hosts/vm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/vm/default.nix')
-rw-r--r--hosts/vm/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/hosts/vm/default.nix b/hosts/vm/default.nix
deleted file mode 100644
index 4fbf51e..0000000
--- a/hosts/vm/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ config, pkgs, lib, secrets, hostname, inputs, user, ... }: {
-
-  imports = [
-  ];
-
-  # Configure keymap in X11
-  services.xserver.layout = "gb";
-
-  # Pick only one of the below networking options.
-  networking = {
-    # networkmanager.enable = true;  # Easiest to use and most distros use this by default.
-    # Configure network proxy if necessary
-    # proxy.default = "http://user:password@proxy:port/";
-    # proxy.noProxy = "127.0.0.1,localhost,internal.domain";
-  };
-
-  environment.systemPackages = with pkgs;
-    [
-
-    ];
-
-  environment.etc."nix-index/files".source = inputs.nix-index.legacyPackages.x86_64-linux.database;
-
-}
-