my nixos/home-manager configuration
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(desktop): remove unused lutris

-20
-1
nixos/desktop/default.nix
··· 17 17 programs = { 18 18 _1password.enable = true; 19 19 steam.enable = true; 20 - lutris.enable = true; 21 20 nix-ld = { 22 21 enable = true; 23 22 libraries = with pkgs; [
-19
nixos/modules/lutris.nix
··· 1 - { 2 - config, 3 - pkgs, 4 - lib, 5 - ... 6 - }: 7 - 8 - let 9 - cfg = config.programs.lutris; 10 - in 11 - { 12 - options.programs.lutris = { 13 - enable = lib.mkEnableOption "lutris"; 14 - }; 15 - 16 - config = lib.mkIf cfg.enable { 17 - environment.systemPackages = with pkgs; [ lutris ]; 18 - }; 19 - }