dotfiles/nixos/kat.nix

15 lines
262 B
Nix
Raw Normal View History

{ pkgs, inputs, config, makeEnable, ... }:
2024-09-26 14:15:27 -06:00
makeEnable config "myModules.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
'';
}