aboutsummaryrefslogtreecommitdiff
path: root/host/obelix.nix
blob: 45cf20dcad5e13bc0c072f60270ec3259e8b95a0 (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";
      directory = "~/projects/dev/compustream";
      terminal = true;
      command = "nix-shell --command fish";
    };
  };
}