Flameshot baybeeeeeeeee
This commit is contained in:
parent
d336c8bf9c
commit
fa31e0738f
@ -21,15 +21,16 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/mnt/working-files" = {
|
fileSystems."/home/javi/working-files" = {
|
||||||
device = "/dev/disk/by-uuid/BE8EBBDA8EBB8A03";
|
device = "/dev/disk/by-uuid/BE8EBBDA8EBB8A03";
|
||||||
fsType = "ntfs";
|
fsType = "ntfs";
|
||||||
options = [
|
options = [
|
||||||
"uid=1000" # your user ID (check with `id -u`)
|
"uid=1000" # your user ID (check with `id -u`)
|
||||||
"gid=100" # your primary group ID (check with `id -g`)
|
"gid=100" # your primary group ID (check with `id -g`)
|
||||||
"dmask=022" # dir permissions
|
"dmask=022" # dir permissions
|
||||||
"fmask=133" # file permissions
|
"fmask=022" # file permissions
|
||||||
"nofail"
|
"nofail"
|
||||||
|
"exec"
|
||||||
|
|
||||||
# make Nautilus show it with a friendly name/icon
|
# make Nautilus show it with a friendly name/icon
|
||||||
"x-gvfs-show"
|
"x-gvfs-show"
|
||||||
|
@ -77,6 +77,7 @@
|
|||||||
XDG_CONFIG_HOME = "${config.home.homeDirectory}/.config";
|
XDG_CONFIG_HOME = "${config.home.homeDirectory}/.config";
|
||||||
XDG_DATA_HOME = "${config.home.homeDirectory}/.local/share";
|
XDG_DATA_HOME = "${config.home.homeDirectory}/.local/share";
|
||||||
XDG_STATE_HOME = "${config.home.homeDirectory}/.local/state";
|
XDG_STATE_HOME = "${config.home.homeDirectory}/.local/state";
|
||||||
|
QT_QPA_PLATFORM = "wayland";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -55,14 +55,14 @@
|
|||||||
"$mod, SPACE, exec, wofi --show drun"
|
"$mod, SPACE, exec, wofi --show drun"
|
||||||
"$mod, d, exec, ${pkgs.wofi-emoji}/bin/wofi-emoji"
|
"$mod, d, exec, ${pkgs.wofi-emoji}/bin/wofi-emoji"
|
||||||
|
|
||||||
"$mod SHIFT, s, exec, hyprshot --mode region"
|
"$mod SHIFT, s, exec, flameshot gui"
|
||||||
", PRINT, exec, hyprshot --mode output"
|
", PRINT, exec, hyprshot --mode output"
|
||||||
|
|
||||||
"$mod SHIFT, c, togglespecialworkspace, comms"
|
"$mod SHIFT, c, togglespecialworkspace, comms"
|
||||||
"$mod SHIFT, a, togglespecialworkspace, research"
|
"$mod SHIFT, a, togglespecialworkspace, research"
|
||||||
"$mod SHIFT ALT, x, exec, hyprctl dispatch exit"
|
"$mod SHIFT ALT, x, exec, hyprctl dispatch exit"
|
||||||
"SHIFT, Print, exec, grimblast copy area"
|
# "SHIFT, Print, exec, grimblast copy area"
|
||||||
"CTRL, Print, exec, grimblast copy active"
|
# "CTRL, Print, exec, grimblast copy active"
|
||||||
]
|
]
|
||||||
++ (
|
++ (
|
||||||
# workspaces
|
# workspaces
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
./hyprpanel.nix
|
./hyprpanel.nix
|
||||||
./wofi.nix
|
./wofi.nix
|
||||||
./desktop-env.nix
|
./desktop-env.nix
|
||||||
|
./screenshots.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
@ -22,16 +23,8 @@
|
|||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
# Notifications
|
# Notifications
|
||||||
libnotify
|
libnotify
|
||||||
|
|
||||||
# Screenshots
|
|
||||||
grim
|
|
||||||
slurp
|
|
||||||
wl-clipboard
|
|
||||||
hyprshot
|
|
||||||
|
|
||||||
# Desktop env
|
# Desktop env
|
||||||
hyprpanel
|
hyprpanel
|
||||||
|
|
||||||
# Utility
|
# Utility
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
];
|
];
|
||||||
|
20
modules/home/hyprland/screenshots.nix
Normal file
20
modules/home/hyprland/screenshots.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
|
{
|
||||||
|
nixpkgs.config.packageOverrides = pkgs: {
|
||||||
|
flameshot = pkgs.flameshot.override {
|
||||||
|
enableWlrSupport = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
flameshot
|
||||||
|
grim
|
||||||
|
slurp
|
||||||
|
];
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user