dotfiles/nixos/extra.nix

13 lines
235 B
Nix
Raw Normal View History

2018-06-24 17:40:02 -06:00
{ config, pkgs, ... }:
{
2021-07-18 20:20:00 -06:00
programs.sway.enable = true;
services.xserver.windowManager.i3.enable = true;
2018-06-24 17:40:02 -06:00
environment.systemPackages = with pkgs; [
2019-12-09 17:17:12 -07:00
asciidoctor
gource
2018-06-24 18:15:56 -06:00
gimp
2018-06-24 17:40:02 -06:00
texlive.combined.scheme-full
2019-05-25 22:18:23 -06:00
tor
2018-06-24 17:40:02 -06:00
];
}