mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
177 lines
4.8 KiB
Nix
177 lines
4.8 KiB
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.programs.regreet;
|
|
settingsFormat = pkgs.formats.toml { };
|
|
in
|
|
{
|
|
options.programs.regreet = {
|
|
enable = lib.mkEnableOption null // {
|
|
description = ''
|
|
Enable ReGreet, a clean and customizable greeter for greetd.
|
|
|
|
To use ReGreet, {option}`services.greetd` has to be enabled and
|
|
{option}`services.greetd.settings.default_session` should contain the
|
|
appropriate configuration to launch
|
|
{option}`config.programs.regreet.package`. For examples, see the
|
|
[ReGreet Readme](https://github.com/rharish101/ReGreet#set-as-default-session).
|
|
|
|
A minimal configuration that launches ReGreet in {command}`cage` is
|
|
enabled by this module by default.
|
|
'';
|
|
};
|
|
|
|
package = lib.mkPackageOption pkgs [ "greetd" "regreet" ] { };
|
|
|
|
settings = lib.mkOption {
|
|
type = settingsFormat.type;
|
|
default = { };
|
|
description = ''
|
|
ReGreet configuration file. Refer
|
|
<https://github.com/rharish101/ReGreet/blob/main/regreet.sample.toml>
|
|
for options.
|
|
'';
|
|
};
|
|
|
|
cageArgs = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [ "-s" ];
|
|
example = lib.literalExpression ''
|
|
[ "-s" "-m" "last" ]
|
|
'';
|
|
description = ''
|
|
Additional arguments to be passed to
|
|
[cage](https://github.com/cage-kiosk/cage).
|
|
'';
|
|
};
|
|
|
|
extraCss = lib.mkOption {
|
|
type = lib.types.either lib.types.path lib.types.lines;
|
|
default = "";
|
|
description = ''
|
|
Extra CSS rules to apply on top of the GTK theme. Refer to
|
|
[GTK CSS Properties](https://docs.gtk.org/gtk4/css-properties.html) for
|
|
modifiable properties.
|
|
'';
|
|
};
|
|
|
|
theme = {
|
|
package = lib.mkPackageOption pkgs "gnome-themes-extra" { } // {
|
|
description = ''
|
|
The package that provides the theme given in the name option.
|
|
'';
|
|
};
|
|
|
|
name = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "Adwaita";
|
|
description = ''
|
|
Name of the theme to use for regreet.
|
|
'';
|
|
};
|
|
};
|
|
|
|
iconTheme = {
|
|
package = lib.mkPackageOption pkgs "adwaita-icon-theme" { } // {
|
|
description = ''
|
|
The package that provides the icon theme given in the name option.
|
|
'';
|
|
};
|
|
|
|
name = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "Adwaita";
|
|
description = ''
|
|
Name of the icon theme to use for regreet.
|
|
'';
|
|
};
|
|
};
|
|
|
|
font = {
|
|
package = lib.mkPackageOption pkgs "cantarell-fonts" { } // {
|
|
description = ''
|
|
The package that provides the font given in the name option.
|
|
'';
|
|
};
|
|
|
|
name = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "Cantarell";
|
|
description = ''
|
|
Name of the font to use for regreet.
|
|
'';
|
|
};
|
|
|
|
size = lib.mkOption {
|
|
type = lib.types.ints.positive;
|
|
default = 16;
|
|
description = ''
|
|
Size of the font to use for regreet.
|
|
'';
|
|
};
|
|
};
|
|
|
|
cursorTheme = {
|
|
package = lib.mkPackageOption pkgs "adwaita-icon-theme" { } // {
|
|
description = ''
|
|
The package that provides the cursor theme given in the name option.
|
|
'';
|
|
};
|
|
|
|
name = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "Adwaita";
|
|
description = ''
|
|
Name of the cursor theme to use for regreet.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [
|
|
cfg.theme.package
|
|
cfg.iconTheme.package
|
|
cfg.cursorTheme.package
|
|
];
|
|
|
|
fonts.packages = [ cfg.font.package ];
|
|
|
|
programs.regreet.settings.GTK = {
|
|
cursor_theme_name = cfg.cursorTheme.name;
|
|
font_name = "${cfg.font.name} ${toString cfg.font.size}";
|
|
icon_theme_name = cfg.iconTheme.name;
|
|
theme_name = cfg.theme.name;
|
|
};
|
|
|
|
services.greetd = {
|
|
enable = lib.mkDefault true;
|
|
settings.default_session.command = lib.mkDefault "${pkgs.dbus}/bin/dbus-run-session ${lib.getExe pkgs.cage} ${lib.escapeShellArgs cfg.cageArgs} -- ${lib.getExe cfg.package}";
|
|
};
|
|
|
|
environment.etc = {
|
|
"greetd/regreet.css" =
|
|
if lib.isPath cfg.extraCss then { source = cfg.extraCss; } else { text = cfg.extraCss; };
|
|
|
|
"greetd/regreet.toml".source = settingsFormat.generate "regreet.toml" cfg.settings;
|
|
};
|
|
|
|
systemd.tmpfiles.settings."10-regreet" =
|
|
let
|
|
defaultConfig = {
|
|
user = "greeter";
|
|
group = config.users.users.${config.services.greetd.settings.default_session.user}.group;
|
|
mode = "0755";
|
|
};
|
|
in
|
|
{
|
|
"/var/log/regreet".d = defaultConfig;
|
|
"/var/cache/regreet".d = defaultConfig;
|
|
};
|
|
};
|
|
}
|