summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <alyssa.ross@unikie.com>2022-11-28 11:36:16 +0000
committerAlyssa Ross <alyssa.ross@unikie.com>2022-11-28 11:36:16 +0000
commit95fba8ac6c872c2ba5e2ea8be5da9f2eb63374c8 (patch)
treecbcabcec5843fcce0bba7beb271372ff857e6b04
parentc99d99c82b54b77fcb455514807b58468ec36fab (diff)
downloadspectrum-95fba8ac6c872c2ba5e2ea8be5da9f2eb63374c8.tar
spectrum-95fba8ac6c872c2ba5e2ea8be5da9f2eb63374c8.tar.gz
spectrum-95fba8ac6c872c2ba5e2ea8be5da9f2eb63374c8.tar.bz2
spectrum-95fba8ac6c872c2ba5e2ea8be5da9f2eb63374c8.tar.lz
spectrum-95fba8ac6c872c2ba5e2ea8be5da9f2eb63374c8.tar.xz
spectrum-95fba8ac6c872c2ba5e2ea8be5da9f2eb63374c8.tar.zst
spectrum-95fba8ac6c872c2ba5e2ea8be5da9f2eb63374c8.zip
host/rootfs: disable seatd systemd support
This will be important when we update Nixpkgs and get a Weston that
uses seatd.

Signed-off-by: Alyssa Ross <alyssa.ross@unikie.com>
-rw-r--r--host/rootfs/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/host/rootfs/default.nix b/host/rootfs/default.nix
index 1dd24c5..0a84f55 100644
--- a/host/rootfs/default.nix
+++ b/host/rootfs/default.nix
@@ -33,6 +33,10 @@ let
       useSystemd = false;
     };
 
+    seatd = super.seatd.override {
+      systemdSupport = false;
+    };
+
     weston = super.weston.overrideAttrs ({ mesonFlags ? [], ... }: {
       mesonFlags = mesonFlags ++ [
         "-Dlauncher-logind=false"