update
This commit is contained in:
parent
d70f587539
commit
cdb88e9519
4 changed files with 26 additions and 3 deletions
1
emacs.el
1
emacs.el
|
|
@ -34,6 +34,7 @@
|
|||
(straight-use-package 'go-mode)
|
||||
(straight-use-package 'fish-mode)
|
||||
(straight-use-package 'svelte-mode)
|
||||
(straight-use-package 'yaml-mode)
|
||||
|
||||
;; (straight-use-package '(promela-mode
|
||||
;; :type git
|
||||
|
|
|
|||
|
|
@ -217,7 +217,7 @@ exec --no-startup-id redshift -t 6000:2000 -l 49.87167:8.65027
|
|||
|
||||
# Screenshot
|
||||
bindsym $mod+y exec maim -s | xclip -selection clipboard -t image/png
|
||||
bindsym $mod+Shift+y exec maim -s | feh -
|
||||
bindsym $mod+Shift+y exec maim -s | imv -
|
||||
|
||||
# Keyboard layout
|
||||
# exec --no-startup-id setxkbmap -layout de
|
||||
|
|
@ -231,3 +231,10 @@ bindsym $mod+Shift+y exec maim -s | feh -
|
|||
|
||||
# Picom
|
||||
exec --no-startup-id picom
|
||||
|
||||
# Passthrough mode
|
||||
set $passthrough_keys Suspend all window manager keys exit: Mod+Shift+P
|
||||
mode "$passthrough_keys" {
|
||||
bindsym $mod+Shift+p mode "default"
|
||||
}
|
||||
bindsym $mod+Shift+p mode "$passthrough_keys"
|
||||
|
|
|
|||
11
nixos/cachix/nimmm.nix
Normal file
11
nixos/cachix/nimmm.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
{
|
||||
nix = {
|
||||
binaryCaches = [
|
||||
"https://nimmm.cachix.org"
|
||||
];
|
||||
binaryCachePublicKeys = [
|
||||
"nimmm.cachix.org-1:usYhOtylPbGmyX95Xdy2YVMOKZVBBt4pTQVAQrzw+0k=";
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -217,8 +217,12 @@
|
|||
# Enable CUPS to print documents.
|
||||
services.printing.enable = true;
|
||||
services.printing.drivers = [ pkgs.hplipWithPlugin ];
|
||||
hardware.sane.enable = true;
|
||||
hardware.sane.extraBackends = [ pkgs.hplipWithPlugin ];
|
||||
|
||||
hardware.sane = {
|
||||
enable = true;
|
||||
brscan4.enable = true;
|
||||
extraBackends = [ pkgs.hplipWithPlugin ];
|
||||
};
|
||||
|
||||
# Redshift
|
||||
# services.redshift = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue