Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e22b99bb905e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 138c94c75ce4
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Jan 10, 2020

  1. nixos/geary: init

    Milan Pässler committed Jan 10, 2020
    Copy the full SHA
    fb96456 View commit details

Commits on Jan 28, 2020

  1. Copy the full SHA
    138c94c View commit details
Showing with 22 additions and 1 deletion.
  1. +1 −0 nixos/modules/module-list.nix
  2. +20 −0 nixos/modules/programs/geary.nix
  3. +1 −1 nixos/modules/services/x11/desktop-managers/gnome3.nix
1 change: 1 addition & 0 deletions nixos/modules/module-list.nix
Original file line number Diff line number Diff line change
@@ -117,6 +117,7 @@
./programs/fish.nix
./programs/freetds.nix
./programs/fuse.nix
./programs/geary.nix
./programs/gnome-disks.nix
./programs/gnome-documents.nix
./programs/gnome-terminal.nix
20 changes: 20 additions & 0 deletions nixos/modules/programs/geary.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ config, pkgs, lib, ... }:

with lib;

let
cfg = config.programs.geary;

in {
options = {
programs.geary.enable = mkEnableOption "Geary, a Mail client for GNOME 3";
};

config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.gnome3.geary ];
programs.dconf.enable = true;
services.gnome3.gnome-keyring.enable = true;
services.gnome3.gnome-online-accounts.enable = true;
};
}

2 changes: 1 addition & 1 deletion nixos/modules/services/x11/desktop-managers/gnome3.nix
Original file line number Diff line number Diff line change
@@ -334,7 +334,6 @@ in
cheese
eog
epiphany
geary
gedit
gnome-calculator
gnome-calendar
@@ -361,6 +360,7 @@ in
# Enable default programs
programs.evince.enable = mkDefault true;
programs.file-roller.enable = mkDefault true;
programs.geary.enable = mkDefault true;
programs.gnome-disks.enable = mkDefault true;
programs.gnome-terminal.enable = mkDefault true;
programs.seahorse.enable = mkDefault true;