DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 503bc69948ca09d1ff70038e7819954b5d65dac0 nix-arta/systems/profiles/lxc/default.nix -rw-r--r-- 325 bytes
503bc699Jonni Liljamo feat(roles/gaming): make gamescope work in steam-fhs a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
lib: inputs @ {
  home-manager,
  sops-nix,
  ...
}: {
  modules = [
    sops-nix.nixosModules.sops
    home-manager.nixosModules.home-manager

    ../../../modules
    ../../../roles

    ./lxc.nix
    ./roles.nix
  ];
  specialArgs = {
    inherit inputs;
    artautil = import ../../../lib/util.nix {inherit lib;};
  };
}