add lappy to colmena

This commit is contained in:
Vivian 2022-08-20 11:38:55 +02:00
parent 5772a41a68
commit ed884c7985
2 changed files with 15 additions and 8 deletions

View file

@ -77,6 +77,21 @@
# Make the coleman configuration
colmena = lib.foldr (el: acc: acc // mkColmenaHost el)
{
null = { ... }: {
networking.hostName = "null";
imports = [
./nixos/common
./nixos/hosts/other/null/configuration.nix
];
deployment = {
allowLocalDeployment = true;
targetHost = null;
};
};
meta = {
nixpkgs = import nixpkgs {
inherit system;

View file

@ -15,13 +15,6 @@
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
@ -86,7 +79,6 @@
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
firefox
# thunderbird
];
};