fix broken import
This commit is contained in:
parent
04f6aa74e7
commit
a7b712d473
3 changed files with 32 additions and 28 deletions
|
@ -1,9 +1,9 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./gpg-agent.nix
|
||||
./spotifyd.nix
|
||||
];
|
||||
services = {
|
||||
imports = [
|
||||
./gpg-agent.nix
|
||||
./spotifyd.nix
|
||||
];
|
||||
blueman-applet.enable = true;
|
||||
gnome-keyring.enable = true;
|
||||
};
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
{ ... }: {
|
||||
gpg-agent = {
|
||||
enable = true;
|
||||
enableExtraSocket = true;
|
||||
enableScDaemon = true;
|
||||
enableSshSupport = true;
|
||||
pinentryFlavor = "gnome3";
|
||||
services = {
|
||||
gpg-agent = {
|
||||
enable = true;
|
||||
enableExtraSocket = true;
|
||||
enableScDaemon = true;
|
||||
enableSshSupport = true;
|
||||
pinentryFlavor = "gnome3";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,22 +1,24 @@
|
|||
{ pkgs, ... }: {
|
||||
spotifyd = {
|
||||
enable = true;
|
||||
package = pkgs.spotifyd.override {
|
||||
withKeyring = true;
|
||||
withMpris = true;
|
||||
};
|
||||
settings = {
|
||||
global = {
|
||||
use_keyring = true;
|
||||
use_mpris = true;
|
||||
username_cmd = ''
|
||||
${pkgs.libsecret}/bin/secret-tool search --all service spotifyd 2>&1 | grep 'username' | awk -F'= ' '{print $2}'
|
||||
'';
|
||||
device_name = "Skipperd";
|
||||
device_type = "computer";
|
||||
backend = "pulseaudio";
|
||||
no_audio_cache = true;
|
||||
dbus_type = "session";
|
||||
services = {
|
||||
spotifyd = {
|
||||
enable = true;
|
||||
package = pkgs.spotifyd.override {
|
||||
withKeyring = true;
|
||||
withMpris = true;
|
||||
};
|
||||
settings = {
|
||||
global = {
|
||||
use_keyring = true;
|
||||
use_mpris = true;
|
||||
username_cmd = ''
|
||||
${pkgs.libsecret}/bin/secret-tool search --all service spotifyd 2>&1 | grep 'username' | awk -F'= ' '{print $2}'
|
||||
'';
|
||||
device_name = "Skipperd";
|
||||
device_type = "computer";
|
||||
backend = "pulseaudio";
|
||||
no_audio_cache = true;
|
||||
dbus_type = "session";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue