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

View file

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

View file

@ -7,7 +7,6 @@
./zathura.nix
./gammastep.nix
./cursor.nix
./gimp.nix
./swaylock.nix
./eww
./foot.nix
@ -22,6 +21,8 @@
pkgs.qt6.qtwayland
mpv
gtk3
mimeo
waypipe
pulseaudio
pamixer
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"
];
};
}