aboutsummaryrefslogtreecommitdiff
path: root/host/obelix.nix
blob: 35bf141b28d55bdf792fde2be860c93aae0be551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }:

{
  imports = [
    ../gui/default.nix
    ../gui/xmonad.nix
  ];

  custom.tasks = {
    "compustream_shell" = {
      description = "compustream dev shell";
      directory = "~/projects/dev/compustream";
      type = "local-shell";
    };
  };
}