eufon/shell.nix
Daniel Barlow 27b28e997b nixos module to start kiwmi at boot
this is here for my convenience, I make no claims of practicality
or beauty (it uses nix-shell and hardcodes pathnames)
2022-07-03 23:08:33 +01:00

16 lines
522 B
Nix

with import <nixpkgs> {} ;
let p = callPackage ./. {};
in (p.overrideAttrs (o:{
nativeBuildInputs = with pkgs; [gdb socat];
shellHook = ''
export LUA_PATH=`lua -e 'print(package.path)'`
export LUA_CPATH=`lua -e 'print(package.cpath)'`
# this is a shell function mostly so that I can comment it out
# to experiment with starting sway or tinywl or something else
# to see how they behave if kiwmi is being weird
start_eufon(){
kiwmi -c init.lua;
}
'';
})).override { debug = true; }