DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: fe84df8b502b50e6c4b6d52de2c7e506c2edf6e4 nix-arta/systems/profiles/desktop/default.nix -rw-r--r-- 288 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
17
18
inputs @ {
  home-manager,
  impermanence,
  sops-nix,
  ...
}: {
  modules = [
    sops-nix.nixosModules.sops
    impermanence.nixosModules.impermanence
    home-manager.nixosModules.home-manager

    ../../../modules
    ../../../roles
  ];
  specialArgs = {
    inherit inputs;
  };
}