mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
24 lines
463 B
Nix
24 lines
463 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
<configs/default.nix>
|
|
./hardware-configuration.nix
|
|
<stockholm/krebs/2configs/hw/x220.nix>
|
|
];
|
|
|
|
niveum = {
|
|
networkInterfaces.wireless = "wlp3s0";
|
|
promptColours.success = "cyan";
|
|
};
|
|
|
|
virtualisation.docker.enable = lib.mkForce false;
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "wilde";
|
|
|
|
system.stateVersion = "19.03";
|
|
}
|