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

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

  custom.hidpi = false;

  custom.tasks = {
    "compustream_shell" = {
      description = "compustream dev shell";
      type = "terminal";
      directory = "~/projects/dev/compustream";
      command = "nix-shell --command fish";
    };
  };
}