diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-20 02:20:21 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-20 02:23:39 +0200 |
commit | 82fa6aa92083a5e71feae0700986d39ece2885e0 (patch) | |
tree | 9387ca5bac1b370eba7aecfe8d0d7ec07065b055 /hosts/vm/default.nix | |
parent | Fully separate hosts from hardwares (diff) | |
download | nixos-config-82fa6aa92083a5e71feae0700986d39ece2885e0.tar.gz nixos-config-82fa6aa92083a5e71feae0700986d39ece2885e0.tar.bz2 nixos-config-82fa6aa92083a5e71feae0700986d39ece2885e0.zip |
Hosts: Remove uneeded "vm" host
As hardware and hosts are now separated, we can remove the now obsolte vm host
Diffstat (limited to 'hosts/vm/default.nix')
-rw-r--r-- | hosts/vm/default.nix | 25 |
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; - -} - |