DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: b13c471287af2b479d0a4931ba5283373350f687 nix-arta/systems/hosts/default.nix -rw-r--r-- 209 bytes
b13c4712Jonni Liljamo feat(hosts/arwen): enable tailscale 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  desktop,
  laptop,
  ...
}: {
  alice = {
    system = "x86_64-linux";
    profile = desktop;
    modules = [];
  };
  arwen = {
    system = "x86_64-linux";
    profile = laptop;
    modules = [];
  };
}