about summary refs log blame commit diff
path: root/hosts/vm/default.nix
blob: 4fbf51ec546c2b6a9292e5d46a7538a69fa49302 (plain) (tree)
1
2
3
4
5
6
7
8


                                                              

    


                                 











                                                                                           


                                                                                                   

 
{ 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;

}