remove: gimp

This commit is contained in:
ooks-io 2023-12-04 22:03:55 +13:00
parent ced7c82160
commit 5a0e123f83
5 changed files with 9 additions and 39 deletions

View file

@ -5,6 +5,7 @@
./bash.nix ./bash.nix
./fish.nix ./fish.nix
./starship.nix ./starship.nix
./nix-index.nix
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
bc # Calculator bc # Calculator
@ -49,14 +50,16 @@
pager = "less -FR"; pager = "less -FR";
}; };
}; };
skim = { fzf = {
enable = true; enable = true;
enableFishIntegration = true; enableFishIntegration = true;
defaultCommand = "rg --files --hidden";
changeDirWidgetOptions = [ changeDirWidgetOptions = [
"--preview 'ea --icons --git --color always -T -L 3 {} | head -200'" "--preview 'eza --icons {} | head -200'"
"--exact" "--exact"
]; ];
fileWidgetOptions = [
"--preview 'bat --color=always {}'"
];
}; };
}; };
} }

View file

@ -52,8 +52,8 @@ in
''; '';
fish_user_key_bindings = '' fish_user_key_bindings = ''
bind --preset -M insert \co fish_hello_world
bind --preset -M insert \cf fish_flake_edit bind --preset -M insert \cf fish_flake_edit
bind --preset -M insert \ec skim_cd_widget
''; '';
}; };
# kitty integration # kitty integration

View file

@ -7,7 +7,6 @@
./zathura.nix ./zathura.nix
./gammastep.nix ./gammastep.nix
./cursor.nix ./cursor.nix
./gimp.nix
./swaylock.nix ./swaylock.nix
./eww ./eww
./foot.nix ./foot.nix
@ -22,6 +21,8 @@
pkgs.qt6.qtwayland pkgs.qt6.qtwayland
mpv mpv
gtk3 gtk3
mimeo
waypipe
pulseaudio pulseaudio
pamixer pamixer
slurp slurp

View file

@ -1,4 +0,0 @@
{ pkgs, ... }: {
home.packages = with pkgs; [gimp];
}

View file

@ -1,30 +0,0 @@
{ lib, config, ... }:
let
cfg = config.wayland.windowManager.hyprland;
in
{
config = lib.mkIf (cfg.enable && cfg.systemd.enable) {
# Stolen from https://github.com/alebastr/sway-systemd/commit/0fdb2c4b10beb6079acd6073c5b3014bd58d3b74
systemd.user.targets.hyprland-session-shutdown = {
Unit = {
Description = "Shutdown running Hyprland session";
DefaultDependencies = "no";
StopWhenUnneeded = "true";
Conflicts = [
"graphical-session.target"
"graphical-session-pre.target"
"hyprland-session.target"
];
After = [
"graphical-session.target"
"graphical-session-pre.target"
"hyprland-session.target"
];
};
};
wayland.windowManager.hyprland.settings.bind = lib.mkAfter [
"SUPERSHIFT,e,exec,systemctl --user start hyprland-session-shutdown.target; hyprctl dispatch exit"
];
};
}