DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: fe84df8b502b50e6c4b6d52de2c7e506c2edf6e4 nix-arta/systems/hosts/default.nix -rw-r--r-- 209 bytes
fe84df8bJonni Liljamo feat(roles/tailscale): add tailscale role 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 = [];
  };
}