about summary refs log tree commit diff stats
path: root/home-manager/config/swaylock/default.nix
blob: 7c3762ccc5c15781c08a1eeb3fba28a0b93280ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{...}: {
  programs.swaylock = {
    enable = true;
    settings = {
      #image = "$WALLPAPER";
      image = "${./commands.jpg}";
      color = "000000";
    };
  };
}