diff options
Diffstat (limited to 'nixos/kusanagi.nix')
-rw-r--r-- | nixos/kusanagi.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/kusanagi.nix b/nixos/kusanagi.nix index 236e162..bc994ba 100644 --- a/nixos/kusanagi.nix +++ b/nixos/kusanagi.nix @@ -16,7 +16,6 @@ # Use systemd-boot boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - boot.plymouth.enable = true; boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" ]; @@ -51,6 +50,11 @@ swapDevices = [{ device = "/dev/disk/by-uuid/c78cfb77-75ee-4aae-9b24-b91f8eebb7c2"; }]; + # Docker + virtualisation.docker.enable = true; + users.users.lx.extraGroups = [ "docker" ]; + environment.systemPackages = with pkgs; [ docker-compose ]; + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = |