about summary refs log tree commit diff stats
path: root/home-manager/config/swaylock/default.nix
blob: 2dfc7b500cb1f1417fc50e6aba461be56aaa11bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  pkgs,
  ...
}: {
  programs.swaylock = {
    enable = true;
    settings = {
      #image = "$WALLPAPER";
      image = builtins.toString ./gnu.png;
      color = "000000";
    };
  };
}
# vim: ts=2