summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2023-02-08 17:24:53 +0100
committerAlex Auvolat <alex@adnab.me>2023-02-08 17:24:53 +0100
commit563b416e67dfc74f6a1c8916e3d44dba710533d2 (patch)
tree5cd01e1cd0ad6f247d71811c7cea62464029263f
parent71fab40f712e22805ceaecd75ab2cb01cf2aa500 (diff)
downloaduser-config-563b416e67dfc74f6a1c8916e3d44dba710533d2.tar.gz
user-config-563b416e67dfc74f6a1c8916e3d44dba710533d2.zip
disable plymouth
-rw-r--r--nixos/kusanagi.nix6
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 =