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

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

  custom.hidpi = false;

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