diff options
-rw-r--r-- | hosts/home.nix | 8 | ||||
-rw-r--r-- | hosts/luna/home.nix | 8 | ||||
-rw-r--r-- | packages/smart-wallpaper/default.nix | 4 |
3 files changed, 7 insertions, 13 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index 15afc4e..1ed87c5 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -11,9 +11,7 @@ in packages = with pkgs; [ scrot - qemu redshift - xwinwrap discord mpv sxiv @@ -24,15 +22,11 @@ in clipmenu dunst sxhkd + zathura feh pavucontrol polkit_gnome - progress - qbittorrent - xorg.xev - statix nixpkgs-fmt - openjdk8 virt-manager xdotool #needed for xmobar clickable workspaces ] ++ diff --git a/hosts/luna/home.nix b/hosts/luna/home.nix index 4abd6cf..5e54c33 100644 --- a/hosts/luna/home.nix +++ b/hosts/luna/home.nix @@ -4,15 +4,15 @@ let in { home.packages = with pkgs; [ - jetbrains.idea-community + #jetbrains.idea-community xorg.xmodmap - calibre - kcc + #calibre + #kcc ] ++ (with pkgs.custom; [ adl trackma - kindlegen + #kindlegen manga-cli mov-cli ]); diff --git a/packages/smart-wallpaper/default.nix b/packages/smart-wallpaper/default.nix index f862175..14895af 100644 --- a/packages/smart-wallpaper/default.nix +++ b/packages/smart-wallpaper/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchFromGitHub, makeWrapper, bash, xdpyinfo, killall }: +{ stdenv, lib, fetchFromGitHub, makeWrapper, bash, xdpyinfo, killall, xwinwrap }: stdenv.mkDerivation { pname = "smart-wallpaper"; version = "1.0"; @@ -14,6 +14,6 @@ stdenv.mkDerivation { mkdir -p $out/bin cp smart-wallpaper $out/bin/smart-wallpaper wrapProgram $out/bin/smart-wallpaper \ - --prefix PATH : ${lib.makeBinPath [ bash xdpyinfo killall ]} + --prefix PATH : ${lib.makeBinPath [ bash xdpyinfo killall xwinwrap ]} ''; } |