Based on https://nixos.org/wiki/ZFS_on_NixOS I did the following
Added
boot.supportedFilesystems = [ "zfs" ];to configuration.nix
| // ~/.config/niri/config.kdl | |
| // Niri Sniper - for quickly jumping to a specific window | |
| // looks like a hand-cramping key combo, but I have left-alt | |
| // mapped to Mod+Ctrl+Alt (using kanata) | |
| Mod+Ctrl+Alt+1 { spawn-sh "niri-sniper-go 1";} | |
| Mod+Ctrl+Alt+2 { spawn-sh "niri-sniper-go 2";} | |
| Mod+Ctrl+Alt+3 { spawn-sh "niri-sniper-go 3";} | |
| Mod+Ctrl+Alt+4 { spawn-sh "niri-sniper-go 4";} | |
| Mod+Ctrl+Alt+5 { spawn-sh "niri-sniper-go 5";} | |
| Mod+Ctrl+Alt+6 { spawn-sh "niri-sniper-go 6";} |
Based on https://nixos.org/wiki/ZFS_on_NixOS I did the following
Added
boot.supportedFilesystems = [ "zfs" ];to configuration.nix
| (defvar hydra-map-of-major-modes nil) | |
| (defun concat-syms (&rest syms) | |
| (intern (apply #'concat (mapcar #'symbol-name syms)))) | |
| (defvar hydra-leader-key "¡") | |
| (defvar hydra-map-of-minor-modes nil) | |
| (defun add-hydra-minor (mode name key hydra) |
| {map, partition, obj-to-func, sort} = require \prelude-ls | |
| {render, div, h1, p} = require \teacup | |
| say = console.log | |
| # UTILITIES # | |
| categorize_orig = (f, a) --> | |
| r = {} | |
| for v in a | |
| k = f v |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>Rounded Rectangles</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script type="text/javascript" src="paper22.js"></script> | |
| <script type="text/paperscript" canvas="canvas" > | |
| var mousePoint = view.center; |