Enable gnome keyring

This commit is contained in:
Cyryl Płotnicki 2019-04-19 20:36:53 +01:00
parent 3c24204713
commit f606585c0e

View file

@ -1,10 +1,7 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
let let
unstableTarball = unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
fetchTarball
https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
in in
{ {
imports = imports =
@ -12,6 +9,8 @@ in
/etc/nixos/hardware-configuration.nix /etc/nixos/hardware-configuration.nix
]; ];
nixpkgs.config = { nixpkgs.config = {
allowUnfree = true; allowUnfree = true;
packageOverrides = pkgs: { packageOverrides = pkgs: {
@ -19,6 +18,9 @@ in
unstable = import unstableTarball { unstable = import unstableTarball {
config = config.nixpkgs.config; config = config.nixpkgs.config;
}; };
cyplo = import "/home/cyryl/dev/nixpkgs/" {
config = config.nixpkgs.config;
};
}; };
}; };
@ -72,7 +74,6 @@ in
}; };
services = { services = {
gnome3.chrome-gnome-shell.enable = true;
physlock.enable = true; physlock.enable = true;
fwupd.enable = true; fwupd.enable = true;
@ -99,6 +100,8 @@ in
timerConfig = { OnCalendar = "hourly"; }; timerConfig = { OnCalendar = "hourly"; };
}; };
gnome3.chrome-gnome-shell.enable = true;
gnome3.gnome-keyring.enable = true;
xserver = { xserver = {
enable = true; enable = true;
layout = "pl"; layout = "pl";
@ -110,6 +113,8 @@ in
}; };
}; };
security.pam.services.lightdm.enableGnomeKeyring = true;
time.timeZone = "Europe/London"; time.timeZone = "Europe/London";
sound.enable = true; sound.enable = true;