summary refs log tree commit diff
path: root/mixins/greet.nix
blob: 794d322a0bbafb12b28358ac60b9915e447c379b (plain)
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
{
  config,
  pkgs,
  lib,
  ...
}: let
  user = "tzlil";

  users.users.greeter.packages = [pkgs.sway];
  greet = "${pkgs.greetd.gtkgreet.out}/bin/gtkgreet -l -s ${pkgs.writeText "gtkgreet.css" "
window {
  background-image: url(\"${pkgs.fetchurl {
    url = "https://i.imgur.com/D6qCaQG.png";
    sha256 = "sha256-Yt5JxmqN6++76cWu8EI/gsmelsJT/3jvLxyeRASQUhI=";
  }}\");
  background-size: cover;
  background-position: center;
  color: white;
}

box#body {
  background-color: rgba(50, 50, 50, 0.8);
  border-radius: 40px;
  padding: 50px;
}

# log in text
.text-button {
  color: white;
}


"}";

  kiosk = command: "${pkgs.cage.out}/bin/cage -- ${command}";
in {
  options.greeter.initialSession = lib.mkOption {
    type = lib.types.str;
    default = "${pkgs.sway.out}/bin/sway";
  };

  config = {
    environment.etc."greetd/environments".text =
      "sway\n"
      + "$SHELL -l\n";

    services.greetd = {
      enable = true;
      settings = {
        default_session = {
          inherit user;
          command = kiosk "${greet} -l &>/dev/null";
        };
        initial_session = {
          inherit user;
          command = config.greeter.initialSession;
        };
      };
    };
  };
}