From 4bcca30c991991b07b942968ecf030c25a005ac4 Mon Sep 17 00:00:00 2001 From: Dmitriy Holkin Date: Sun, 26 Jan 2020 00:20:58 +0400 Subject: [PATCH] Add keepassxc and pulseeffects --- modules/applications/podman-compose.nix | 20 -------------------- modules/workspace/i3/default.nix | 17 ++++++++++++++++- 2 files changed, 16 insertions(+), 21 deletions(-) delete mode 100644 modules/applications/podman-compose.nix diff --git a/modules/applications/podman-compose.nix b/modules/applications/podman-compose.nix deleted file mode 100644 index b73d37e..0000000 --- a/modules/applications/podman-compose.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ lib, python37Packages }: -with python37Packages; -buildPythonPackage rec { - pname = "podman-compose"; - version = "0.1.5"; - - src = fetchPypi { - inherit pname version; - sha256 = "1sgbc889zq127qhxa9frhswa1mid19fs5qnyzfihx648y5i968pv"; - }; - - propagatedBuildInputs = [ pyaml ]; - - meta = with lib; { - homepage = https://github.com/containers/podman-compose; - description = "A script to run docker-compose.yml using podman"; - license = licenses.gpl2; - # maintainers = with maintainers; [ alukardbf ]; - }; -} \ No newline at end of file diff --git a/modules/workspace/i3/default.nix b/modules/workspace/i3/default.nix index 284c60f..9eb6d68 100644 --- a/modules/workspace/i3/default.nix +++ b/modules/workspace/i3/default.nix @@ -11,7 +11,10 @@ in { config = rec { assigns = { # "" = [ { class = "Chromium"; } { class = "Firefox"; } ]; - "" = [ { class = "Spotify"; } ]; + "" = [ + { class = "Spotify"; } + # { class = "PulseEffects"; } + ]; "" = [ { class = "^Telegram"; } { class = "^VK"; } @@ -92,6 +95,18 @@ in { { command = "${pkgs.xorg.xrdb}/bin/xrdb -merge ~/.Xresources"; } { command = "${pkgs.pywal}/bin/wal -R"; } { command = "${pkgs.spotifywm}/bin/spotifywm"; } + { + command = + "${pkgs.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1"; + } + { + command = + "${pkgs.keepassxc}/bin/keepassxc --keyfile=/home/alukard/.passwords.key /home/alukard/nixos-config/misc/Passwords.kdbx"; + } + { + command = + "${pkgs.pulseeffects}/bin/pulseeffects --gapplication-service"; + } ]; keybindings = let script = name: content: "exec ${pkgs.writeScript name content}";