patches and low-level development discussion
 help / color / mirror / code / Atom feed
70ddac4c5459dbd7141dbfdba848ca1f5cc94f4d blob 1660 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
 
{ writeScript, writeText, lib, makeRootfs
, busybox, execline, s6, sommelier, source-code-pro, wayfire, zsh
, gcc, emacs26-nox, westonLite
}:

let
  path = [
    zsh emacs26-nox gcc wayfire sommelier westonLite busybox s6 execline
  ];

  login = writeScript "login" ''
    #! ${execline}/bin/execlineb -s0
    unexport !
    ${busybox}/bin/login -p -f root $@
  '';

  # This can't be /etc/wayfire/defaults.ini because autostart entries
  # from that file aren't applied.
  wayfireConfig = writeText "wayfire-config" ''
    [core]
    xwayland = false

    [input]
    xkb_layout = us
    xkb_variant = dvorak

    [autostart]
    terminal = weston-terminal --shell $(command -v zsh)
  '';
in

makeRootfs {
  services.getty.run = writeScript "getty-run" ''
    #! ${execline}/bin/execlineb -P
    ${busybox}/bin/getty -i -n -l ${login} 38400 ttyS0
  '';

  rcServices.ok-all = {
    type = writeText "ok-all-type" ''
      bundle
    '';
    contents = writeText "ok-all-contents" ''
      wayfire
    '';
  };

  rcServices.wayfire = {
    type = writeText "wayfire-type" ''
      longrun
    '';
    run = writeScript "wayfire-run" ''
      #! ${execline}/bin/execlineb -S0

      s6-applyuidgid -u 1000 -g 1000

      export HOME /
      export PATH ${lib.makeBinPath path}
      export XDG_RUNTIME_DIR /run/user/1000

      ${sommelier}/bin/sommelier
      wayfire -c ${wayfireConfig}
    '';
    dependencies = writeText "wayfire-dependencies" ''
      wl0
    '';
  };

  rcServices.wl0 = {
    type = writeText "wl0-type" ''
      oneshot
    '';
    up = writeText "wl0-run" ''
      chown user /dev/wl0
    '';
  };

  fonts = [ source-code-pro ];
}
debug log:

solving 70ddac4c545 ...
found 70ddac4c545 in https://spectrum-os.org/git/nixpkgs

Code repositories for project(s) associated with this public inbox

	https://spectrum-os.org/git/crosvm
	https://spectrum-os.org/git/doc
	https://spectrum-os.org/git/mktuntap
	https://spectrum-os.org/git/nixpkgs
	https://spectrum-os.org/git/spectrum
	https://spectrum-os.org/git/ucspi-vsock
	https://spectrum-os.org/git/www

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).