forked from colonelpanic/dotfiles
14 lines
244 B
Nix
14 lines
244 B
Nix
{ pkgs, inputs, config, makeEnable, ... }:
|
|
makeEnable config "modules.kat" false {
|
|
environment.systemPackages = with pkgs; [
|
|
bitwarden
|
|
obsidian
|
|
obs-studio
|
|
ffmpeg
|
|
];
|
|
|
|
environment.extraInit = ''
|
|
export PAGER=cat
|
|
'';
|
|
}
|