From c0ea41727e303081623ddc7d3c603c2019a3d321 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Sat, 1 Oct 2022 22:50:36 +0300 Subject: [PATCH] some fixes --- modules/seadrive.nix | 2 +- profiles/overlay.nix | 4 ---- profiles/workspace/misc.nix | 2 ++ 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/modules/seadrive.nix b/modules/seadrive.nix index ac76938..5d1a541 100644 --- a/modules/seadrive.nix +++ b/modules/seadrive.nix @@ -66,7 +66,7 @@ in { ''; }; Unit = rec { - After = [ "network.target" ]; + After = [ "network-online.target" ]; Wants = After; }; Install.WantedBy = [ "multi-user.target" ]; diff --git a/profiles/overlay.nix b/profiles/overlay.nix index a39c4f0..7bfd4a1 100644 --- a/profiles/overlay.nix +++ b/profiles/overlay.nix @@ -9,10 +9,6 @@ let config = config.nixpkgs.config; localSystem = { inherit system; }; }); - custom = import inputs.nixpkgs-custom ({ - config = config.nixpkgs.config; - localSystem = { inherit system; }; - }); roundcube-plugins = import ./packages/roundcube-plugins/default.nix; in with lib; { diff --git a/profiles/workspace/misc.nix b/profiles/workspace/misc.nix index f0af14a..417ac6f 100644 --- a/profiles/workspace/misc.nix +++ b/profiles/workspace/misc.nix @@ -17,6 +17,8 @@ systemd.user.startServices = true; home.stateVersion = "21.11"; + nixpkgs.config.allowUnfree = true; + #TODO: Move to another file services.pass-secret-service.enable = true; systemd.user.services.pass-secret-service = {