dotfiles/nixos/kat.nix

15 lines
260 B
Nix
Raw Normal View History

{ pkgs, inputs, config, makeEnable, ... }:
makeEnable config "modules.kat" false {
2023-06-28 23:08:24 -06:00
environment.systemPackages = with pkgs; [
bitwarden
obsidian
obs-studio
ffmpeg
2024-09-07 12:21:58 -06:00
code-cursor
2023-06-28 23:08:24 -06:00
];
2023-08-14 12:14:53 -06:00
environment.extraInit = ''
export PAGER=cat
'';
}