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 @@
|
|||
{ ... }: {
|
||||
services = {
|
||||
imports = [
|
||||
./gpg-agent.nix
|
||||
./spotifyd.nix
|
||||
];
|
||||
services = {
|
||||
blueman-applet.enable = true;
|
||||
gnome-keyring.enable = true;
|
||||
};
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{ ... }: {
|
||||
services = {
|
||||
gpg-agent = {
|
||||
enable = true;
|
||||
enableExtraSocket = true;
|
||||
|
@ -6,4 +7,5 @@
|
|||
enableSshSupport = true;
|
||||
pinentryFlavor = "gnome3";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{ pkgs, ... }: {
|
||||
services = {
|
||||
spotifyd = {
|
||||
enable = true;
|
||||
package = pkgs.spotifyd.override {
|
||||
|
@ -20,4 +21,5 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue