Random tweaks

This commit is contained in:
Ivan Malison 2021-08-09 03:40:36 -06:00
parent a7f548d230
commit 923b52b4b2
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
6 changed files with 11 additions and 9 deletions

View File

@ -20,6 +20,9 @@
rec { rec {
devShell = pkgs.haskellPackages.shellFor { devShell = pkgs.haskellPackages.shellFor {
packages = p: [ p.imalison-xmonad ]; packages = p: [ p.imalison-xmonad ];
buildInputs = with pkgs.haskellPackages; [
cabal-install haskell-language-server hlint ghcid ormolu implicit-hie
];
}; };
defaultPackage = pkgs.haskellPackages.imalison-xmonad; defaultPackage = pkgs.haskellPackages.imalison-xmonad;
}) // { inherit overlay overlays; } ; }) // { inherit overlay overlays; } ;

View File

@ -1,7 +1,8 @@
#!/usr/bin/env sh #!/usr/bin/env sh
function toggle_taffybar { function toggle_taffybar {
dbus-send --print-reply=literal --dest=taffybar.toggle /taffybar/toggle taffybar.toggle.toggleCurrent dbus-send --print-reply=literal --dest=taffybar.toggle \
/taffybar/toggle taffybar.toggle.toggleCurrent
} }
toggle_taffybar toggle_taffybar

View File

@ -2,14 +2,8 @@
nix = { nix = {
binaryCaches = [ binaryCaches = [
"https://cache.nixos.org/" "https://cache.nixos.org/"
"https://hie-nix.cachix.org"
"https://taffy.cachix.org"
"https://waymonad.cachix.org"
]; ];
binaryCachePublicKeys = [ binaryCachePublicKeys = [
"hie-nix.cachix.org-1:EjBSHzF6VmDnzqlldGXbi0RM3HdjfTU3yDRi9Pd0jTY="
"taffy.cachix.org-1:H0iiOGeXnLOAptADO4i3AiDIOladTcZYxXp+P0lOvHw="
"waymonad.cachix.org-1:Z4Nbjc3iYJNFZi0eAgzqLWFBuDRClAy1prZBv7eK64A="
]; ];
}; };
} }

View File

@ -22,12 +22,15 @@ in
python-with-my-packages python-with-my-packages
alacritty alacritty
emacs (emacsWithPackages (epkgs: with epkgs.melpaPackages; [
vterm
]))
firefox firefox
vlc vlc
transmission-gtk transmission-gtk
dolphin dolphin
element-desktop element-desktop
gpick
# Appearance # Appearance
numix-icon-theme-circle numix-icon-theme-circle

View File

@ -5,6 +5,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
asciidoctor asciidoctor
vscode vscode
signal-desktop
gource gource
gimp gimp
texlive.combined.scheme-full texlive.combined.scheme-full

View File

@ -55,7 +55,7 @@
services.random-background = { services.random-background = {
enable = true; enable = true;
display = "center"; display = "scale";
interval = "1h"; interval = "1h";
imageDirectory = "%h/Pictures/wallpaper/use"; imageDirectory = "%h/Pictures/wallpaper/use";
}; };